From 1f3ea64407d419e667454844898d2d9422c00386 Mon Sep 17 00:00:00 2001 From: neargye Date: Tue, 8 Oct 2019 13:20:14 +0500 Subject: [PATCH] v0.6.2 --- 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 27113fc..c2f578a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(magic_enum VERSION "0.6.1" LANGUAGES CXX) +project(magic_enum VERSION "0.6.2" LANGUAGES CXX) if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) set(IS_TOPLEVEL_PROJECT TRUE) diff --git a/conanfile.py b/conanfile.py index 6d21496..29ba984 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.1" + version = "0.6.2" 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 daa3622..0226883 100644 --- a/include/magic_enum.hpp +++ b/include/magic_enum.hpp @@ -5,7 +5,7 @@ // | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_| // |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____| // __/ | https://github.com/Neargye/magic_enum -// |___/ vesion 0.6.1 +// |___/ vesion 0.6.2 // // Licensed under the MIT License . // SPDX-License-Identifier: MIT