Commit 48870fa 1 parent 70416d0 commit 48870fa Copy full SHA for 48870fa
File tree 3 files changed +27
-2
lines changed
3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.11 .0
2
+ current_version = 0.12 .0
3
3
tag = True
4
4
sign_tags = True
5
5
tag_message = intx {new_version}
Original file line number Diff line number Diff line change @@ -5,6 +5,30 @@ Documentation of all notable changes to the **intx** project.
5
5
The format is based on [ Keep a Changelog] ,
6
6
and this project adheres to [ Semantic Versioning] .
7
7
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
+
8
32
## [ 0.11.0] — 2024-08-06
9
33
10
34
### Added
@@ -224,6 +248,7 @@ and this project adheres to [Semantic Versioning].
224
248
[ #99 ] ( https://github.com/chfast/intx/pull/99 )
225
249
226
250
251
+ [ 0.12.0 ] : https://github.com/chfast/intx/releases/v0.12.0
227
252
[ 0.11.0 ] : https://github.com/chfast/intx/releases/v0.11.0
228
253
[ 0.10.1 ] : https://github.com/chfast/intx/releases/v0.10.1
229
254
[ 0.10.0 ] : https://github.com/chfast/intx/releases/v0.10.0
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ if(INTX_TESTING)
27
27
endif ()
28
28
29
29
project (intx LANGUAGES CXX)
30
- set (PROJECT_VERSION 0.11 .0)
30
+ set (PROJECT_VERSION 0.12 .0)
31
31
32
32
cable_configure_compiler(NO_STACK_PROTECTION)
33
33
You can’t perform that action at this time.
0 commit comments