Skip to content

Commit

Permalink
intx 0.11.0
Browse files Browse the repository at this point in the history
Bump version: 0.11.0-dev → 0.11.0
  • Loading branch information
chfast committed Aug 6, 2024
1 parent d67bcec commit 500eec5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0-dev
current_version = 0.11.0
tag = True
sign_tags = True
tag_message = intx {new_version}
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ 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.11.0] — 2024-08-06

### Added

- Support `constexpr` context execution for all arithmetic including division.
[#305](https://github.com/chfast/intx/pull/305)
[#311](https://github.com/chfast/intx/pull/311)
[#314](https://github.com/chfast/intx/pull/314)

### Changed

- Literal operators changed to `consteval`.
[#298](https://github.com/chfast/intx/pull/298)
- Some C++20 modernization.
[#297](https://github.com/chfast/intx/pull/297)
[#308](https://github.com/chfast/intx/pull/308)

### Fixed

- Fixes to division for `constexpr` context.
[#309](https://github.com/chfast/intx/pull/309)
[#310](https://github.com/chfast/intx/pull/310)

## [0.10.1] — 2023-07-17

### Fixed
Expand Down Expand Up @@ -201,6 +224,7 @@ and this project adheres to [Semantic Versioning].
[#99](https://github.com/chfast/intx/pull/99)


[0.11.0]: https://github.com/chfast/intx/releases/v0.11.0
[0.10.1]: https://github.com/chfast/intx/releases/v0.10.1
[0.10.0]: https://github.com/chfast/intx/releases/v0.10.0
[0.9.3]: https://github.com/chfast/intx/releases/v0.9.3
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if(INTX_TESTING)
endif()

project(intx LANGUAGES CXX)
set(PROJECT_VERSION 0.11.0-dev)
set(PROJECT_VERSION 0.11.0)

cable_configure_compiler(NO_STACK_PROTECTION)

Expand Down

0 comments on commit 500eec5

Please sign in to comment.