diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e8756d5d..82cefb49 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0-dev +current_version = 0.10.0 tag = True sign_tags = True tag_message = intx {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 613b5e5c..0efbe8b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,11 @@ 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.10.0] — unreleased +## [0.10.0] — 2023-04-25 ### Changed -- C++20 is not required to use intx. +- C++20 is now required to use intx. [#287](https://github.com/chfast/intx/pull/287) [#290](https://github.com/chfast/intx/pull/290) @@ -187,7 +187,7 @@ and this project adheres to [Semantic Versioning]. [#99](https://github.com/chfast/intx/pull/99) -[0.10.0]: https://github.com/chfast/intx/compare/v0.9.2..master +[0.10.0]: https://github.com/chfast/intx/releases/v0.10.0 [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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 821e21c3..5eef7dd4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ if(INTX_TESTING) endif() project(intx LANGUAGES CXX) -set(PROJECT_VERSION 0.10.0-dev) +set(PROJECT_VERSION 0.10.0) cable_configure_compiler(NO_STACK_PROTECTION)