Skip to content

Commit

Permalink
intx 0.8.0
Browse files Browse the repository at this point in the history
Bump version: 0.7.1 → 0.8.0
  • Loading branch information
chfast committed Mar 15, 2022
1 parent 29cabb9 commit 58c0c7f
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.7.1
current_version = 0.8.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 @@ -6,6 +6,30 @@ The format is based on [Keep a Changelog],
and this project adheres to [Semantic Versioning].


## [0.8.0] — 2022-03-15

### Added

- Added support for big-endian architectures.
[#257](https://github.com/chfast/intx/pull/257)
- Extend endian-specific load/store helpers to work with builtin integer types.
[#265](https://github.com/chfast/intx/pull/265)

### Changed

- The `addc()` and `subc()` have been optimized with compiler's builtins if available.
[#250](https://github.com/chfast/intx/pull/250)
[#251](https://github.com/chfast/intx/pull/251)
[#253](https://github.com/chfast/intx/pull/253)
- Fixed and enabled CI testing for architectures other than x86.
[#255](https://github.com/chfast/intx/pull/255)
- Small multiplication optimization.
[#261](https://github.com/chfast/intx/pull/261)
- Small division optimization.
[#263](https://github.com/chfast/intx/pull/263)
- Small comparison operators optimization for the `uint256` type.
[#264](https://github.com/chfast/intx/pull/264)

## [0.7.1] — 2022-02-15

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


[0.8.0]: https://github.com/chfast/intx/releases/v0.8.0
[0.7.1]: https://github.com/chfast/intx/releases/v0.7.1
[0.7.0]: https://github.com/chfast/intx/releases/v0.7.0
[0.6.0]: https://github.com/chfast/intx/releases/v0.6.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.7.1)
set(PROJECT_VERSION 0.8.0)

cable_configure_compiler(NO_STACK_PROTECTION)

Expand Down

0 comments on commit 58c0c7f

Please sign in to comment.