diff --git a/CHANGELOG.md b/CHANGELOG.md index 358683a..15d11c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## Version 0.2.4 + +* Minimum CMake version is now 3.5 (#156). +* Better module support (#151). +* Prevent dangling double-wrapping of `function_ref` (#154). +* Use EBO for `strong_typedef` on MSVC (#159). +* Add `flag_set::from_int` (#161). + ## Version 0.2.3 * Enable the use of `import std` (#141, #147). diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b475b6..421ce0f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,7 +125,7 @@ set(TYPE_SAFE_CMAKE_SIZEOF_VOID_P ${CMAKE_SIZEOF_VOID_P}) set(CMAKE_SIZEOF_VOID_P "") write_basic_package_version_file( ${CMAKE_CURRENT_BINARY_DIR}/type_safe-config-version.cmake - VERSION 0.2.3 + VERSION 0.2.4 COMPATIBILITY SameMajorVersion ) set(CMAKE_SIZEOF_VOID_P ${TYPE_SAFE_CMAKE_SIZEOF_VOID_P}) diff --git a/conanfile.py b/conanfile.py index 9831127..ec63d8d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -5,7 +5,7 @@ class TypeSafe(ConanFile): name = 'type_safe' url = 'https://github.com/foonathan/type_safe' - version = '0.2.3' + version = '0.2.4' requires = 'debug_assert/1.3@Manu343726/testing' exports = '*.hpp' generators = 'cmake'