diff --git a/CMakeLists.txt b/CMakeLists.txt index 341079d..710a9ad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(nameof VERSION "0.9.2" LANGUAGES CXX) +project(nameof VERSION "0.9.3" LANGUAGES CXX) if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) set(IS_TOPLEVEL_PROJECT TRUE) diff --git a/README.md b/README.md index fb38dfd..f3b7228 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ [![Build status](https://travis-ci.org/Neargye/nameof.svg?branch=master)](https://travis-ci.org/Neargye/nameof) [![Build status](https://ci.appveyor.com/api/projects/status/yq5fk0d9mwljbubt/branch/master?svg=true)](https://ci.appveyor.com/project/Neargye/nameof/branch/master) [![Codacy badge](https://api.codacy.com/project/badge/Grade/1d06f3f07afe4f34acd29c0c8efa830b)](https://www.codacy.com/app/Neargye/nameof?utm_source=github.com&utm_medium=referral&utm_content=Neargye/nameof&utm_campaign=Badge_Grade) -[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/a3pi8aYGnzuMq5Bd) +[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/p4k7LC9w0BO4UJgo) # Nameof C++ diff --git a/conanfile.py b/conanfile.py index 84e9807..65422c6 100644 --- a/conanfile.py +++ b/conanfile.py @@ -5,7 +5,7 @@ from conans.errors import ConanInvalidConfiguration class NameofConan(ConanFile): name = "nameof" - version = "0.9.2" + version = "0.9.3" 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 f40cf98..f9fa3fd 100644 --- a/include/nameof.hpp +++ b/include/nameof.hpp @@ -5,7 +5,7 @@ // | |\ | (_| | | | | | | __/ (_) | | | |____|_| |_| // |_| \_|\__,_|_| |_| |_|\___|\___/|_| \_____| // https://github.com/Neargye/nameof -// version 0.9.2 +// version 0.9.3 // // Licensed under the MIT License . // SPDX-License-Identifier: MIT