diff --git a/CMakeLists.txt b/CMakeLists.txt index 889e4c3..528703a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(nameof VERSION "0.9.1" LANGUAGES CXX) +project(nameof VERSION "0.9.2" LANGUAGES CXX) include(${CMAKE_BINARY_DIR}/conan_paths.cmake OPTIONAL) diff --git a/conanfile.py b/conanfile.py index 2246885..84e9807 100644 --- a/conanfile.py +++ b/conanfile.py @@ -5,7 +5,7 @@ from conans.errors import ConanInvalidConfiguration class NameofConan(ConanFile): name = "nameof" - version = "0.9.1" + version = "0.9.2" 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 c31779b..c8790e7 100644 --- a/include/nameof.hpp +++ b/include/nameof.hpp @@ -5,7 +5,6 @@ // | |\ | (_| | | | | | | __/ (_) | | | |____|_| |_| // |_| \_|\__,_|_| |_| |_|\___|\___/|_| \_____| // https://github.com/Neargye/nameof -// vesion 0.9.1 // vesion 0.9.2 // // Licensed under the MIT License .