Skip to content

Commit c5a588e

Browse files
committed
chore: release 1.12.3
1 parent 7dc999e commit c5a588e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
## [1.12.3] - 2024-06-03
13+
1214
### Changed
1315

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

1619
### Fixed
1720

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

2023
[#363]: https://github.com/recmo/uint/pull/363
2124
[#366]: https://github.com/recmo/uint/pull/366
25+
[#373]: https://github.com/recmo/uint/pull/373
2226

2327
## [1.12.1] - 2024-03-12
2428

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

328332
<!-- links to version -->
329333

330-
[unreleased]: https://github.com/recmo/uint/compare/v1.12.1...HEAD
334+
[unreleased]: https://github.com/recmo/uint/compare/v1.12.3...HEAD
335+
[1.12.3]: https://github.com/recmo/uint/releases/tag/v1.12.3
331336
[1.12.1]: https://github.com/recmo/uint/releases/tag/v1.12.1
332337
[1.12.0]: https://github.com/recmo/uint/releases/tag/v1.12.0
333338
[1.11.1]: https://github.com/recmo/uint/releases/tag/v1.11.1

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ruint"
33
description = "Unsigned integer type with const-generic bit length"
4-
version = "1.12.2"
4+
version = "1.12.3"
55
keywords = ["uint"]
66
categories = ["mathematics"]
77
include = [".cargo/", "src/", "README.md"]
@@ -37,7 +37,7 @@ path = "benches/bench.rs"
3737
required-features = ["std"]
3838

3939
[dependencies]
40-
ruint-macro = { version = "1.2.0", path = "ruint-macro" }
40+
ruint-macro = { version = "1.2.1", path = "ruint-macro" }
4141

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

ruint-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ruint-macro"
33
description = "The `uint!` macro for `Uint` and `Bits` literals"
4-
version = "1.2.0"
4+
version = "1.2.1"
55
keywords = ["uint", "macro"]
66
categories = ["mathematics"]
77
readme = "README.md"

0 commit comments

Comments
 (0)