Skip to content

Commit 500eec5

Browse files
committed
intx 0.11.0
Bump version: 0.11.0-dev → 0.11.0
1 parent d67bcec commit 500eec5

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.11.0-dev
2+
current_version = 0.11.0
33
tag = True
44
sign_tags = True
55
tag_message = intx {new_version}

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ Documentation of all notable changes to the **intx** project.
55
The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

8+
## [0.11.0] — 2024-08-06
9+
10+
### Added
11+
12+
- Support `constexpr` context execution for all arithmetic including division.
13+
[#305](https://github.com/chfast/intx/pull/305)
14+
[#311](https://github.com/chfast/intx/pull/311)
15+
[#314](https://github.com/chfast/intx/pull/314)
16+
17+
### Changed
18+
19+
- Literal operators changed to `consteval`.
20+
[#298](https://github.com/chfast/intx/pull/298)
21+
- Some C++20 modernization.
22+
[#297](https://github.com/chfast/intx/pull/297)
23+
[#308](https://github.com/chfast/intx/pull/308)
24+
25+
### Fixed
26+
27+
- Fixes to division for `constexpr` context.
28+
[#309](https://github.com/chfast/intx/pull/309)
29+
[#310](https://github.com/chfast/intx/pull/310)
30+
831
## [0.10.1] — 2023-07-17
932

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

203226

227+
[0.11.0]: https://github.com/chfast/intx/releases/v0.11.0
204228
[0.10.1]: https://github.com/chfast/intx/releases/v0.10.1
205229
[0.10.0]: https://github.com/chfast/intx/releases/v0.10.0
206230
[0.9.3]: https://github.com/chfast/intx/releases/v0.9.3

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if(INTX_TESTING)
2727
endif()
2828

2929
project(intx LANGUAGES CXX)
30-
set(PROJECT_VERSION 0.11.0-dev)
30+
set(PROJECT_VERSION 0.11.0)
3131

3232
cable_configure_compiler(NO_STACK_PROTECTION)
3333

0 commit comments

Comments
 (0)