Skip to content

Commit e046b69

Browse files
committed
v0.9.7
1 parent 15a085f commit e046b69

13 files changed

+14
-14
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
22

33
project(
44
magic_enum
5-
VERSION "0.9.6"
5+
VERSION "0.9.7"
66
HOMEPAGE_URL "https://github.com/Neargye/magic_enum"
77
DESCRIPTION
88
"A library that provides static reflection for enums, work with any enum type without any macro or boilerplate code."

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module(
22
name = "magic_enum",
3-
version = "0.9.6",
3+
version = "0.9.7",
44
compatibility_level = 0,
55
)

include/magic_enum/magic_enum.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_|
66
// |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____|
77
// __/ | https://github.com/Neargye/magic_enum
8-
// |___/ version 0.9.6
8+
// |___/ version 0.9.7
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT
@@ -34,7 +34,7 @@
3434

3535
#define MAGIC_ENUM_VERSION_MAJOR 0
3636
#define MAGIC_ENUM_VERSION_MINOR 9
37-
#define MAGIC_ENUM_VERSION_PATCH 6
37+
#define MAGIC_ENUM_VERSION_PATCH 7
3838

3939
#ifndef MAGIC_ENUM_USE_STD_MODULE
4040
#include <array>

include/magic_enum/magic_enum_all.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_|
66
// |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____|
77
// __/ | https://github.com/Neargye/magic_enum
8-
// |___/ version 0.9.6
8+
// |___/ version 0.9.7
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT

include/magic_enum/magic_enum_containers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_|
66
// |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____|
77
// __/ | https://github.com/Neargye/magic_enum
8-
// |___/ version 0.9.6
8+
// |___/ version 0.9.7
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT

include/magic_enum/magic_enum_flags.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_|
66
// |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____|
77
// __/ | https://github.com/Neargye/magic_enum
8-
// |___/ version 0.9.6
8+
// |___/ version 0.9.7
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT

include/magic_enum/magic_enum_format.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_|
66
// |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____|
77
// __/ | https://github.com/Neargye/magic_enum
8-
// |___/ version 0.9.6
8+
// |___/ version 0.9.7
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT

include/magic_enum/magic_enum_fuse.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_|
66
// |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____|
77
// __/ | https://github.com/Neargye/magic_enum
8-
// |___/ version 0.9.6
8+
// |___/ version 0.9.7
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT

include/magic_enum/magic_enum_iostream.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_|
66
// |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____|
77
// __/ | https://github.com/Neargye/magic_enum
8-
// |___/ version 0.9.6
8+
// |___/ version 0.9.7
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT

include/magic_enum/magic_enum_switch.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// | | | | (_| | (_| | | (__ | |____| | | | |_| | | | | | | | |____|_| |_|
66
// |_| |_|\__,_|\__, |_|\___| |______|_| |_|\__,_|_| |_| |_| \_____|
77
// __/ | https://github.com/Neargye/magic_enum
8-
// |___/ version 0.9.6
8+
// |___/ version 0.9.7
99
//
1010
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
1111
// SPDX-License-Identifier: MIT

0 commit comments

Comments
 (0)