File tree 4 files changed +8
-3
lines changed
4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Entries are listed in reverse chronological order.
4
4
5
+ ## 2.4.0
6
+
7
+ * Add new ` ConstantTimeGreater ` and ` ConstantTimeLess ` traits, as well
8
+ as implementations for unsigned integers, by @isislovecruft .
9
+
5
10
## 2.3.0
6
11
7
12
* Add ` impl ConstantTimeEq for Choice ` by @tarcieri .
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "subtle"
4
4
# - update CHANGELOG
5
5
# - update html_root_url
6
6
# - update README if necessary by semver
7
- version = " 2.3 .0"
7
+ version = " 2.4 .0"
8
8
authors = [" Isis Lovecruft <isis@patternsinthevoid.net>" ,
9
9
" Henry de Valence <hdevalence@hdevalence.ca>" ]
10
10
readme = " README.md"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ instead of `bool` which are intended to execute in constant-time. The `Choice`
7
7
type is a wrapper around a ` u8 ` that holds a ` 0 ` or ` 1 ` .
8
8
9
9
``` toml
10
- subtle = " 2.3 "
10
+ subtle = " 2.4 "
11
11
```
12
12
13
13
This crate represents a “best-effort” attempt, since side-channels
Original file line number Diff line number Diff line change 13
13
#![ cfg_attr( feature = "nightly" , doc( include = "../README.md" ) ) ]
14
14
#![ cfg_attr( feature = "nightly" , deny( missing_docs) ) ]
15
15
#![ doc( html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png" ) ]
16
- #![ doc( html_root_url = "https://docs.rs/subtle/2.3 .0" ) ]
16
+ #![ doc( html_root_url = "https://docs.rs/subtle/2.4 .0" ) ]
17
17
18
18
//! Note that docs will only build on nightly Rust until
19
19
//! [RFC 1990 stabilizes](https://github.com/rust-lang/rust/issues/44732).
You can’t perform that action at this time.
0 commit comments