Skip to content

Commit

Permalink
Release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
foonathan committed Oct 13, 2021
1 parent b09a8d3 commit a7741b8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Version 0.2.2

* Replace `TYPE_SAFE_ARITHMETIC_UB` CMake option by `TYPE_SAFE_ARITHMETIC_POLICY` to enable checked arithmetic by default (#106)
* Be less strict in the signed/unsigned conversion of `integer` (#104)
* Various bugfixes (#97, #108, #111, #115)

## Version 0.2.1

This release is mainly bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ set(CONFIG_PACKAGE_INSTALL_DIR lib/cmake/type_safe)

write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/type_safe-config-version.cmake
VERSION 0.2.1
VERSION 0.2.2
COMPATIBILITY SameMajorVersion
)

Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class TypeSafe(ConanFile):
name = 'type_safe'
url = 'https://github.com/foonathan/type_safe'
version = '0.2'
version = '0.2.2'
requires = 'debug_assert/1.3@Manu343726/testing'
exports = '*.hpp'
generators = 'cmake'
Expand Down

0 comments on commit a7741b8

Please sign in to comment.