Skip to content

Commit 627242b

Browse files
authored
poly1305 v0.6.0 (#58)
1 parent e320115 commit 627242b

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
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/CHANGES.md renamed to poly1305/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.6.0 (2020-06-06)
9+
### Added
10+
- `Poly1305::compute_unpadded` for XSalsa20Poly1305 ([#55])
11+
12+
### Changed
13+
- Bump `universal-hash` dependency to v0.4; MSRV 1.41 ([#52], [#57])
14+
- Rename `result` methods to to `finalize` ([#56])
15+
16+
### Fixed
17+
- Build with `zeroize` enabled ([#48])
18+
19+
[#57]: https://github.com/RustCrypto/universal-hashes/pull/57
20+
[#56]: https://github.com/RustCrypto/universal-hashes/pull/56
21+
[#55]: https://github.com/RustCrypto/universal-hashes/pull/55
22+
[#52]: https://github.com/RustCrypto/universal-hashes/pull/52
23+
[#48]: https://github.com/RustCrypto/universal-hashes/pull/48
24+
825
## 0.5.2 (2019-11-14)
926
### Changed
1027
- Upgrade to `zeroize` 1.0 ([#33])

poly1305/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "poly1305"
3-
version = "0.6.0-pre"
3+
version = "0.6.0"
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = "The Poly1305 universal hash function and message authentication code"
@@ -11,9 +11,6 @@ categories = ["cryptography", "no-std"]
1111
readme = "README.md"
1212
edition = "2018"
1313

14-
[badges]
15-
maintenance = { status = "passively-maintained" }
16-
1714
[dependencies]
1815
universal-hash = { version = "0.4", default-features = false }
1916
zeroize = { version = "1", optional = true, default-features = false }

0 commit comments

Comments
 (0)