Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin subtle to v2.4 for crypto-mac v0.11 #691

Merged
merged 1 commit into from Jul 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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