Skip to content

Commit 1149b24

Browse files
authored
Pin zeroize to v1.3 (#134)
1 parent b78e333 commit 1149b24

File tree

10 files changed

+57
-26
lines changed

10 files changed

+57
-26
lines changed

Cargo.lock

+22-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ghash/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.4.3 (2021-07-20)
9+
### Changed
10+
- Pin `zeroize` dependency to v1.3 ([#134])
11+
12+
[#134]: https://github.com/RustCrypto/universal-hashes/pull/134
13+
814
## 0.4.2 (2021-05-31)
915
### Added
1016
- Nightly-only ARMv8 intrinsics support gated under the `armv8` feature ([#126])

ghash/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ghash"
3-
version = "0.4.2"
3+
version = "0.4.3" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = """
@@ -17,7 +17,7 @@ edition = "2018"
1717
[dependencies]
1818
opaque-debug = "0.3"
1919
polyval = { version = "0.5.1", path = "../polyval" }
20-
zeroize = { version = "1", optional = true, default-features = false }
20+
zeroize = { version = "=1.3", optional = true, default-features = false }
2121

2222
[dev-dependencies]
2323
hex-literal = "0.3"

ghash/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
2525
#![no_std]
2626
#![doc(
27-
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
28-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
27+
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
28+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
29+
html_root_url = "https://docs.rs/ghash/0.4.3"
2930
)]
3031
#![warn(missing_docs, rust_2018_idioms)]
3132

poly1305/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.7.1 (2021-07-20)
9+
### Changed
10+
- Pin `zeroize` dependency to v1.3 ([#134])
11+
12+
[#134]: https://github.com/RustCrypto/universal-hashes/pull/134
13+
814
## 0.7.0 (2021-04-29)
915
### Changed
1016
- Use `ManuallyDrop` unions; MSRV 1.49+ ([#114])

poly1305/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "poly1305"
3-
version = "0.7.0"
3+
version = "0.7.1" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = "The Poly1305 universal hash function and message authentication code"
@@ -14,7 +14,7 @@ edition = "2018"
1414
[dependencies]
1515
opaque-debug = "0.3"
1616
universal-hash = { version = "0.4", default-features = false }
17-
zeroize = { version = "1", optional = true, default-features = false }
17+
zeroize = { version = "=1.3", optional = true, default-features = false }
1818

1919
[target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies]
2020
cpufeatures = "0.1"

poly1305/src/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@
4242
//! [MobileCoin]: https://mobilecoin.com
4343
4444
#![no_std]
45-
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")]
45+
#![doc(
46+
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
47+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
48+
html_root_url = "https://docs.rs/poly1305/0.7.1"
49+
)]
4650
#![warn(missing_docs, rust_2018_idioms)]
4751

4852
#[cfg(feature = "std")]

polyval/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.5.2 (2021-07-20)
9+
### Changed
10+
- Pin `zeroize` dependency to v1.3 ([#134])
11+
12+
[#134]: https://github.com/RustCrypto/universal-hashes/pull/134
13+
814
## 0.5.1 (2021-05-31)
915
### Added
1016
- Nightly-only ARMv8 intrinsics support gated under the `armv8` feature ([#126])

polyval/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polyval"
3-
version = "0.5.1"
3+
version = "0.5.2" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = """
@@ -18,7 +18,7 @@ edition = "2018"
1818
cfg-if = "1"
1919
opaque-debug = "0.3"
2020
universal-hash = { version = "0.4", default-features = false }
21-
zeroize = { version = "1.3", optional = true, default-features = false }
21+
zeroize = { version = "=1.3", optional = true, default-features = false }
2222

2323
[target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies]
2424
cpufeatures = "0.1.5"

polyval/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,9 @@
8080
feature(stdsimd, aarch64_target_feature)
8181
)]
8282
#![doc(
83-
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
84-
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
83+
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
84+
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
85+
html_root_url = "https://docs.rs/polyval/0.5.2"
8586
)]
8687
#![warn(missing_docs, rust_2018_idioms)]
8788

0 commit comments

Comments
 (0)