Skip to content

Commit 6ae2495

Browse files
committed
Release 0.2.3
1 parent 578f60d commit 6ae2495

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## Version 0.2.3
2+
3+
* Enable the use of `import std` (#141, #147).
4+
* Make `strong_typedef` structural so it can be used as NTTP (#126).
5+
* Add safe integer comparisons (#134).
6+
* Enable EBO on MSVC (#128).
7+
* Various bugfixes and CMake improvements (#132, #133, #137, #139, #143, #146, #148).
8+
19
## Version 0.2.2
210

311
* Replace `TYPE_SAFE_ARITHMETIC_UB` CMake option by `TYPE_SAFE_ARITHMETIC_POLICY` to enable checked arithmetic by default (#106)

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.2
128+
VERSION 0.2.3
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.2'
8+
version = '0.2.3'
99
requires = 'debug_assert/1.3@Manu343726/testing'
1010
exports = '*.hpp'
1111
generators = 'cmake'

0 commit comments

Comments
 (0)