Skip to content

Commit 48870fa

Browse files
committed
intx 0.12.0
Bump version: 0.11.0 → 0.12.0
1 parent 70416d0 commit 48870fa

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.11.0
2+
current_version = 0.12.0
33
tag = True
44
sign_tags = True
55
tag_message = intx {new_version}

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ 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.12.0] — 2024-09-03
9+
10+
### Added
11+
12+
- Consequent type aliases and literal suffixes:
13+
[#317](https://github.com/chfast/intx/pull/317)
14+
- `uint128`, `1_u128`
15+
- `uint192`, `1_u192`
16+
- `uint256`, `1_u256`
17+
- `uint320`, `1_u320`
18+
- `uint384`, `1_u384`
19+
- `uint448`, `1_u448`
20+
- `uint512`, `1_u512`
21+
22+
### Changed
23+
24+
- Restructure of the code by using `friend operator` and `if constexpr`.
25+
[#318](https://github.com/chfast/intx/pull/318)
26+
[#319](https://github.com/chfast/intx/pull/319)
27+
[#320](https://github.com/chfast/intx/pull/320)
28+
[#321](https://github.com/chfast/intx/pull/321)
29+
[#322](https://github.com/chfast/intx/pull/322)
30+
[#324](https://github.com/chfast/intx/pull/324)
31+
832
## [0.11.0] — 2024-08-06
933

1034
### Added
@@ -224,6 +248,7 @@ and this project adheres to [Semantic Versioning].
224248
[#99](https://github.com/chfast/intx/pull/99)
225249

226250

251+
[0.12.0]: https://github.com/chfast/intx/releases/v0.12.0
227252
[0.11.0]: https://github.com/chfast/intx/releases/v0.11.0
228253
[0.10.1]: https://github.com/chfast/intx/releases/v0.10.1
229254
[0.10.0]: https://github.com/chfast/intx/releases/v0.10.0

CMakeLists.txt

+1-1
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)
30+
set(PROJECT_VERSION 0.12.0)
3131

3232
cable_configure_compiler(NO_STACK_PROTECTION)
3333

0 commit comments

Comments
 (0)