Skip to content

Commit

Permalink
intx 0.12.0
Browse files Browse the repository at this point in the history
Bump version: 0.11.0 → 0.12.0
  • Loading branch information
chfast committed Sep 3, 2024
1 parent 70416d0 commit 48870fa
Show file tree
Hide file tree
Showing 3 changed files with 27 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
current_version = 0.12.0
tag = True
sign_tags = True
tag_message = intx {new_version}
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ 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.12.0] — 2024-09-03

### Added

- Consequent type aliases and literal suffixes:
[#317](https://github.com/chfast/intx/pull/317)
- `uint128`, `1_u128`
- `uint192`, `1_u192`
- `uint256`, `1_u256`
- `uint320`, `1_u320`
- `uint384`, `1_u384`
- `uint448`, `1_u448`
- `uint512`, `1_u512`

### Changed

- Restructure of the code by using `friend operator` and `if constexpr`.
[#318](https://github.com/chfast/intx/pull/318)
[#319](https://github.com/chfast/intx/pull/319)
[#320](https://github.com/chfast/intx/pull/320)
[#321](https://github.com/chfast/intx/pull/321)
[#322](https://github.com/chfast/intx/pull/322)
[#324](https://github.com/chfast/intx/pull/324)

## [0.11.0] — 2024-08-06

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


[0.12.0]: https://github.com/chfast/intx/releases/v0.12.0
[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
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)
set(PROJECT_VERSION 0.12.0)

cable_configure_compiler(NO_STACK_PROTECTION)

Expand Down

0 comments on commit 48870fa

Please sign in to comment.