Skip to content

Commit 1e487d4

Browse files
authored
poly1305 v0.7.2 (#139)
1 parent f6b0ab6 commit 1e487d4

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
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.

poly1305/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.2 (2021-08-27)
9+
### Changed
10+
- Bump `cpufeatures` dependency to v0.2 ([#136])
11+
12+
[#136]: https://github.com/RustCrypto/universal-hashes/pull/136
13+
814
## 0.7.1 (2021-07-20)
915
### Changed
1016
- Pin `zeroize` dependency to v1.3 ([#134])

poly1305/Cargo.toml

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

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

0 commit comments

Comments
 (0)