diff --git a/CHANGELOG.md b/CHANGELOG.md index 66dd3df..fc958ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Entries are listed in reverse chronological order. +## 2.4.1 + +* Add a note to the README about crate seizures. + ## 2.4.0 * Add new `ConstantTimeGreater` and `ConstantTimeLess` traits, as well diff --git a/Cargo.toml b/Cargo.toml index ea2f740..88d2960 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "subtle-ng" # - update CHANGELOG # - update html_root_url # - update README if necessary by semver -version = "2.4.0" +version = "2.4.1" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index 3951bdb..8d97be1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ #![cfg_attr(feature = "nightly", feature(external_doc))] #![cfg_attr(feature = "nightly", doc(include = "../README.md"))] #![cfg_attr(feature = "nightly", deny(missing_docs))] -#![doc(html_root_url = "https://docs.rs/subtle-ng/2.4.0")] +#![doc(html_root_url = "https://docs.rs/subtle-ng/2.4.1")] //! Note that docs will only build on nightly Rust until //! [RFC 1990 stabilizes](https://github.com/rust-lang/rust/issues/44732).