Skip to content

Commit

Permalink
cherry-pick crypto-mac changes from #691
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Jul 20, 2021
1 parent 286a52e commit 693e72f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions crypto-mac/CHANGELOG.md
Expand Up @@ -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])
Expand All @@ -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])
Expand Down
4 changes: 2 additions & 2 deletions 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"
Expand All @@ -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 }
Expand Down
3 changes: 2 additions & 1 deletion crypto-mac/src/lib.rs
Expand Up @@ -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)]
Expand Down

0 comments on commit 693e72f

Please sign in to comment.