Skip to content

Commit

Permalink
crypto-mac: pin subtle to v2.4 (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Jul 20, 2021
1 parent cfbfca4 commit 95e5763
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 @@ -5,12 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 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)
### Changed
- Bump `cipher` dependency to v0.3 ([#621])

[#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.11.0"
version = "0.11.1" # 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 @@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"]
[dependencies]
generic-array = "0.14"
cipher = { version = "0.3", optional = true, path = "../cipher" }
subtle = { version = "2", default-features = false }
subtle = { version = "=2.4", default-features = false }
blobby = { version = "0.3", optional = true }

[features]
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/meta/master/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/crypto-mac/0.11.1"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms)]
Expand Down

0 comments on commit 95e5763

Please sign in to comment.