File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.11.0-dev
2
+ current_version = 0.11.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,29 @@ 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.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
+
8
31
## [ 0.10.1] — 2023-07-17
9
32
10
33
### Fixed
@@ -201,6 +224,7 @@ and this project adheres to [Semantic Versioning].
201
224
[ #99 ] ( https://github.com/chfast/intx/pull/99 )
202
225
203
226
227
+ [ 0.11.0 ] : https://github.com/chfast/intx/releases/v0.11.0
204
228
[ 0.10.1 ] : https://github.com/chfast/intx/releases/v0.10.1
205
229
[ 0.10.0 ] : https://github.com/chfast/intx/releases/v0.10.0
206
230
[ 0.9.3 ] : https://github.com/chfast/intx/releases/v0.9.3
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-dev )
30
+ set (PROJECT_VERSION 0.11.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