Skip to content

Commit 72e69b7

Browse files
committed
Release 0.2.4
1 parent fb5eba9 commit 72e69b7

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## Version 0.2.4
2+
3+
* Minimum CMake version is now 3.5 (#156).
4+
* Better module support (#151).
5+
* Prevent dangling double-wrapping of `function_ref` (#154).
6+
* Use EBO for `strong_typedef` on MSVC (#159).
7+
* Add `flag_set::from_int` (#161).
8+
19
## Version 0.2.3
210

311
* Enable the use of `import std` (#141, #147).

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ set(TYPE_SAFE_CMAKE_SIZEOF_VOID_P ${CMAKE_SIZEOF_VOID_P})
125125
set(CMAKE_SIZEOF_VOID_P "")
126126
write_basic_package_version_file(
127127
${CMAKE_CURRENT_BINARY_DIR}/type_safe-config-version.cmake
128-
VERSION 0.2.3
128+
VERSION 0.2.4
129129
COMPATIBILITY SameMajorVersion
130130
)
131131
set(CMAKE_SIZEOF_VOID_P ${TYPE_SAFE_CMAKE_SIZEOF_VOID_P})

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class TypeSafe(ConanFile):
66
name = 'type_safe'
77
url = 'https://github.com/foonathan/type_safe'
8-
version = '0.2.3'
8+
version = '0.2.4'
99
requires = 'debug_assert/1.3@Manu343726/testing'
1010
exports = '*.hpp'
1111
generators = 'cmake'

0 commit comments

Comments
 (0)