Skip to content

Commit 10bfd8a

Browse files
authored
polyval v0.5.3 (#140)
1 parent 1e487d4 commit 10bfd8a

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

polyval/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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.3 (2021-08-27)
9+
### Changed
10+
- Bump `cpufeatures` dependency to v0.2 ([#136], [#138])
11+
- Remove use of ARMv8 `crypto` feature ([#137])
12+
13+
[#136]: https://github.com/RustCrypto/universal-hashes/pull/136
14+
[#137]: https://github.com/RustCrypto/universal-hashes/pull/137
15+
[#138]: https://github.com/RustCrypto/universal-hashes/pull/138
16+
817
## 0.5.2 (2021-07-20)
918
### Changed
1019
- Pin `zeroize` dependency to v1.3 ([#134])

polyval/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polyval"
3-
version = "0.5.2" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.5.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 = """
@@ -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, <1.4", optional = true, default-features = false }
2222

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

polyval/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
#![doc(
8383
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
8484
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
85-
html_root_url = "https://docs.rs/polyval/0.5.2"
85+
html_root_url = "https://docs.rs/polyval/0.5.3"
8686
)]
8787
#![warn(missing_docs, rust_2018_idioms)]
8888

0 commit comments

Comments
 (0)