diff --git a/CMakeLists.txt b/CMakeLists.txt index ed10b22..4524e1c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(magic_enum VERSION "0.6.3" LANGUAGES CXX) +project(magic_enum VERSION "0.6.4" LANGUAGES CXX) if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) set(IS_TOPLEVEL_PROJECT TRUE) diff --git a/README.md b/README.md index 59b2178..cc68b28 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ [![Build status](https://travis-ci.org/Neargye/magic_enum.svg?branch=master)](https://travis-ci.org/Neargye/magic_enum) [![Build status](https://ci.appveyor.com/api/projects/status/0rpr966p9ssrvwu3/branch/master?svg=true)](https://ci.appveyor.com/project/Neargye/magic-enum-hf8vk/branch/master) [![Codacy badge](https://api.codacy.com/project/badge/Grade/64d04f150af14c3e8bd1090057b68538)](https://www.codacy.com/app/Neargye/magic_enum?utm_source=github.com&utm_medium=referral&utm_content=Neargye/magic_enum&utm_campaign=Badge_Grade) -[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/ko7CDu6CU0rJYUQC) -[![Compiler explorer](https://img.shields.io/badge/compiler_explorer-online-blue.svg)](https://godbolt.org/z/99PDNz) +[![Try online](https://img.shields.io/badge/try-online-blue.svg)](https://wandbox.org/permlink/2exUJizXSEFgKCvo) +[![Compiler explorer](https://img.shields.io/badge/compiler_explorer-online-blue.svg)](https://godbolt.org/z/BxfmsH) # Magic Enum C++ diff --git a/conanfile.py b/conanfile.py index 8ade1e7..c132180 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.3" + version = "0.6.4" 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 1085b16..1ce3a58 100644 --- a/include/magic_enum.hpp +++ b/include/magic_enum.hpp @@ -5,7 +5,7 @@ // | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_| // |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____| // __/ | https://github.com/Neargye/magic_enum -// |___/ version 0.6.3 +// |___/ version 0.6.4 // // Licensed under the MIT License . // SPDX-License-Identifier: MIT