diff --git a/crypto-mac/CHANGELOG.md b/crypto-mac/CHANGELOG.md index 95b1b7beb..7488081b1 100644 --- a/crypto-mac/CHANGELOG.md +++ b/crypto-mac/CHANGELOG.md @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#683]: https://github.com/RustCrypto/traits/pull/683 +## 0.11.1 (2021-07-20) +### Changed +- Pin `subtle` dependency to v2.4 ([#691]) + +[#691]: https://github.com/RustCrypto/traits/pull/691 + ## 0.11.0 (2021-04-28) ### Added - `generate_key` method to `New*` trait ([#513]) @@ -23,6 +29,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#513]: https://github.com/RustCrypto/traits/pull/513 [#621]: https://github.com/RustCrypto/traits/pull/621 +## 0.10.1 (2021-07-20) +### Changed +- Pin `subtle` dependency to v2.4 ([#690]) + +[#690]: https://github.com/RustCrypto/traits/pull/690 + ## 0.10.0 (2020-10-15) ### Changed - Replace `block-cipher` crate with new `cipher` crate ([#337], [#338]) diff --git a/crypto-mac/Cargo.toml b/crypto-mac/Cargo.toml index 414951a82..725f75fa4 100644 --- a/crypto-mac/Cargo.toml +++ b/crypto-mac/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crypto-mac" description = "Trait for Message Authentication Code (MAC) algorithms" -version = "0.12.0-pre" +version = "0.12.0-pre" # Also update html_root_url in lib.rs when bumping this authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -15,7 +15,7 @@ categories = ["cryptography", "no-std"] generic-array = "0.14" crypto-common = { version = "=0.1.0-pre", path = "../crypto-common" } cipher = { version = "=0.4.0-pre", path = "../cipher" } -subtle = { version = "2", default-features = false } +subtle = { version = "=2.4", default-features = false } blobby = { version = "0.3", optional = true } rand_core = { version = "0.6", optional = true } diff --git a/crypto-mac/src/lib.rs b/crypto-mac/src/lib.rs index 1bcf13f9b..e5e2f2ba7 100644 --- a/crypto-mac/src/lib.rs +++ b/crypto-mac/src/lib.rs @@ -4,7 +4,8 @@ #![cfg_attr(docsrs, feature(doc_cfg))] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg", - html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg" + html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg", + html_root_url = "https://docs.rs/crypto-mac/0.12.0-pre" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms)]