Skip to content

Commit

Permalink
Merge pull request #376 from DaniPopes/release-1.12.3
Browse files Browse the repository at this point in the history
chore: release 1.12.3
  • Loading branch information
gakonst authored Jun 3, 2024
2 parents 7dc999e + c5a588e commit 0c07a4c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.12.3] - 2024-06-03

### Changed

- Use borrowing/carrying ops in add/sub, remove bound checks in shifts ([#366])
- Make `mul_mod` non-allocating ([#373])

### Fixed

- Add `alloc` requirement to `num-traits` feature [#363]

[#363]: https://github.com/recmo/uint/pull/363
[#366]: https://github.com/recmo/uint/pull/366
[#373]: https://github.com/recmo/uint/pull/373

## [1.12.1] - 2024-03-12

Expand Down Expand Up @@ -327,7 +331,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- links to version -->

[unreleased]: https://github.com/recmo/uint/compare/v1.12.1...HEAD
[unreleased]: https://github.com/recmo/uint/compare/v1.12.3...HEAD
[1.12.3]: https://github.com/recmo/uint/releases/tag/v1.12.3
[1.12.1]: https://github.com/recmo/uint/releases/tag/v1.12.1
[1.12.0]: https://github.com/recmo/uint/releases/tag/v1.12.0
[1.11.1]: https://github.com/recmo/uint/releases/tag/v1.11.1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ruint"
description = "Unsigned integer type with const-generic bit length"
version = "1.12.2"
version = "1.12.3"
keywords = ["uint"]
categories = ["mathematics"]
include = [".cargo/", "src/", "README.md"]
Expand Down Expand Up @@ -37,7 +37,7 @@ path = "benches/bench.rs"
required-features = ["std"]

[dependencies]
ruint-macro = { version = "1.2.0", path = "ruint-macro" }
ruint-macro = { version = "1.2.1", path = "ruint-macro" }

thiserror = { version = "1.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion ruint-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ruint-macro"
description = "The `uint!` macro for `Uint` and `Bits` literals"
version = "1.2.0"
version = "1.2.1"
keywords = ["uint", "macro"]
categories = ["mathematics"]
readme = "README.md"
Expand Down

0 comments on commit 0c07a4c

Please sign in to comment.