Skip to content

Commit a7741b8

Browse files
committed
Release 0.2.2
1 parent b09a8d3 commit a7741b8

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Version 0.2.2
2+
3+
* Replace `TYPE_SAFE_ARITHMETIC_UB` CMake option by `TYPE_SAFE_ARITHMETIC_POLICY` to enable checked arithmetic by default (#106)
4+
* Be less strict in the signed/unsigned conversion of `integer` (#104)
5+
* Various bugfixes (#97, #108, #111, #115)
6+
17
## Version 0.2.1
28

39
This release is mainly bugfixes:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ set(CONFIG_PACKAGE_INSTALL_DIR lib/cmake/type_safe)
112112

113113
write_basic_package_version_file(
114114
${CMAKE_CURRENT_BINARY_DIR}/type_safe-config-version.cmake
115-
VERSION 0.2.1
115+
VERSION 0.2.2
116116
COMPATIBILITY SameMajorVersion
117117
)
118118

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

0 commit comments

Comments
 (0)