diff --git a/.bumpversion.cfg b/.bumpversion.cfg index de0c0f12..5b3ff61a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1 +current_version = 0.9.2 tag = True sign_tags = True tag_message = intx {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index e43f3351..b205ac1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ Documentation of all notable changes to the **intx** project. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## [0.9.2] — 2023-03-11 + +### Changed + +- Increase tolerance to some compiler warnings (e.g. unknown pragma, unknown attribute) + in case `intx.hpp` is used without CMake assistance. + [#286](https://github.com/chfast/intx/pull/286) + ## [0.9.1] — 2023-01-25 ### Fixed @@ -171,6 +179,7 @@ and this project adheres to [Semantic Versioning]. [#99](https://github.com/chfast/intx/pull/99) +[0.9.2]: https://github.com/chfast/intx/releases/v0.9.2 [0.9.1]: https://github.com/chfast/intx/releases/v0.9.1 [0.9.0]: https://github.com/chfast/intx/releases/v0.9.0 [0.8.0]: https://github.com/chfast/intx/releases/v0.8.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 8081f65c..dbb9a06b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ if(INTX_TESTING) endif() project(intx LANGUAGES CXX) -set(PROJECT_VERSION 0.9.1) +set(PROJECT_VERSION 0.9.2) cable_configure_compiler(NO_STACK_PROTECTION)