diff --git a/CMakeLists.txt b/CMakeLists.txt index 4524e1c..858c78c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(magic_enum VERSION "0.6.4" LANGUAGES CXX) +project(magic_enum VERSION "0.6.5" LANGUAGES CXX) if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) set(IS_TOPLEVEL_PROJECT TRUE) diff --git a/conanfile.py b/conanfile.py index 53c628e..2828207 100644 --- a/conanfile.py +++ b/conanfile.py @@ -5,7 +5,7 @@ from conans.errors import ConanInvalidConfiguration class MagicEnumConan(ConanFile): name = "magic_enum" - version = "0.6.4" + version = "0.6.5" description = "Header-only C++17 library provides static reflection for enums, work with any enum type without any macro or boilerplate code." topics = ( "conan", diff --git a/include/magic_enum.hpp b/include/magic_enum.hpp index 7730576..0e4a195 100644 --- a/include/magic_enum.hpp +++ b/include/magic_enum.hpp @@ -5,7 +5,7 @@ // | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_| // |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____| // __/ | https://github.com/Neargye/magic_enum -// |___/ version 0.6.4 +// |___/ version 0.6.5 // // Licensed under the MIT License . // SPDX-License-Identifier: MIT