From 2327f53634396ec7131e9d411d0e420c6ec361b1 Mon Sep 17 00:00:00 2001 From: Neargye Date: Fri, 31 Jan 2020 14:13:11 +0500 Subject: [PATCH] v0.6.5 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- include/magic_enum.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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