From e97a790afb002d0043dd1c94b5da57b76e658145 Mon Sep 17 00:00:00 2001 From: neargye Date: Sat, 6 Jun 2020 16:27:54 +0500 Subject: [PATCH] v0.9.4 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- include/nameof.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 710a9ad..ae952cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(nameof VERSION "0.9.3" LANGUAGES CXX) +project(nameof VERSION "0.9.4" LANGUAGES CXX) if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) set(IS_TOPLEVEL_PROJECT TRUE) diff --git a/conanfile.py b/conanfile.py index 3a122d3..1f45c72 100644 --- a/conanfile.py +++ b/conanfile.py @@ -5,7 +5,7 @@ from conans.errors import ConanInvalidConfiguration class NameofConan(ConanFile): name = "nameof" - version = "0.9.3" + version = "0.9.4" description = "Header-only C++17 library provides nameof macros and functions to simply obtain the name of a variable, type, function, macro, and enum." topics = ( "conan", diff --git a/include/nameof.hpp b/include/nameof.hpp index 0fe447e..0db9475 100644 --- a/include/nameof.hpp +++ b/include/nameof.hpp @@ -5,7 +5,7 @@ // | |\ | (_| | | | | | | __/ (_) | | | |____|_| |_| // |_| \_|\__,_|_| |_| |_|\___|\___/|_| \_____| // https://github.com/Neargye/nameof -// version 0.9.3 +// version 0.9.4 // // Licensed under the MIT License . // SPDX-License-Identifier: MIT