Commit c5a588e 1 parent 7dc999e commit c5a588e Copy full SHA for c5a588e
File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## [ Unreleased]
11
11
12
+ ## [ 1.12.3] - 2024-06-03
13
+
12
14
### Changed
13
15
14
16
- Use borrowing/carrying ops in add/sub, remove bound checks in shifts ([ #366 ] )
17
+ - Make ` mul_mod ` non-allocating ([ #373 ] )
15
18
16
19
### Fixed
17
20
18
21
- Add ` alloc ` requirement to ` num-traits ` feature [ #363 ]
19
22
20
23
[ #363 ] : https://github.com/recmo/uint/pull/363
21
24
[ #366 ] : https://github.com/recmo/uint/pull/366
25
+ [ #373 ] : https://github.com/recmo/uint/pull/373
22
26
23
27
## [ 1.12.1] - 2024-03-12
24
28
@@ -327,7 +331,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
327
331
328
332
<!-- links to version -->
329
333
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
331
336
[ 1.12.1 ] : https://github.com/recmo/uint/releases/tag/v1.12.1
332
337
[ 1.12.0 ] : https://github.com/recmo/uint/releases/tag/v1.12.0
333
338
[ 1.11.1 ] : https://github.com/recmo/uint/releases/tag/v1.11.1
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ruint"
3
3
description = " Unsigned integer type with const-generic bit length"
4
- version = " 1.12.2 "
4
+ version = " 1.12.3 "
5
5
keywords = [" uint" ]
6
6
categories = [" mathematics" ]
7
7
include = [" .cargo/" , " src/" , " README.md" ]
@@ -37,7 +37,7 @@ path = "benches/bench.rs"
37
37
required-features = [" std" ]
38
38
39
39
[dependencies ]
40
- ruint-macro = { version = " 1.2.0 " , path = " ruint-macro" }
40
+ ruint-macro = { version = " 1.2.1 " , path = " ruint-macro" }
41
41
42
42
thiserror = { version = " 1.0" , optional = true }
43
43
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ruint-macro"
3
3
description = " The `uint!` macro for `Uint` and `Bits` literals"
4
- version = " 1.2.0 "
4
+ version = " 1.2.1 "
5
5
keywords = [" uint" , " macro" ]
6
6
categories = [" mathematics" ]
7
7
readme = " README.md"
You can’t perform that action at this time.
0 commit comments