From 6e13c256a243776c2ced5f72c0340797ddce9ae3 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 6 Jun 2020 07:58:09 -0700 Subject: [PATCH] poly1305 v0.6.0 --- Cargo.lock | 2 +- poly1305/{CHANGES.md => CHANGELOG.md} | 17 +++++++++++++++++ poly1305/Cargo.toml | 5 +---- 3 files changed, 19 insertions(+), 5 deletions(-) rename poly1305/{CHANGES.md => CHANGELOG.md} (71%) diff --git a/Cargo.lock b/Cargo.lock index 2d98689..f1bb71b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -307,7 +307,7 @@ dependencies = [ [[package]] name = "poly1305" -version = "0.6.0-pre" +version = "0.6.0" dependencies = [ "universal-hash 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "zeroize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/poly1305/CHANGES.md b/poly1305/CHANGELOG.md similarity index 71% rename from poly1305/CHANGES.md rename to poly1305/CHANGELOG.md index e8b431f..7b55fcb 100644 --- a/poly1305/CHANGES.md +++ b/poly1305/CHANGELOG.md @@ -5,6 +5,23 @@ 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.6.0 (2020-06-06) +### Added +- `Poly1305::compute_unpadded` for XSalsa20Poly1305 ([#55]) + +### Changed +- Bump `universal-hash` dependency to v0.4; MSRV 1.41 ([#52], [#57]) +- Rename `result` methods to to `finalize` ([#56]) + +### Fixed +- Build with `zeroize` enabled ([#48]) + +[#57]: https://github.com/RustCrypto/universal-hashes/pull/57 +[#56]: https://github.com/RustCrypto/universal-hashes/pull/56 +[#55]: https://github.com/RustCrypto/universal-hashes/pull/55 +[#52]: https://github.com/RustCrypto/universal-hashes/pull/52 +[#48]: https://github.com/RustCrypto/universal-hashes/pull/48 + ## 0.5.2 (2019-11-14) ### Changed - Upgrade to `zeroize` 1.0 ([#33]) diff --git a/poly1305/Cargo.toml b/poly1305/Cargo.toml index e0500d4..3e4282c 100644 --- a/poly1305/Cargo.toml +++ b/poly1305/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poly1305" -version = "0.6.0-pre" +version = "0.6.0" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" description = "The Poly1305 universal hash function and message authentication code" @@ -11,9 +11,6 @@ categories = ["cryptography", "no-std"] readme = "README.md" edition = "2018" -[badges] -maintenance = { status = "passively-maintained" } - [dependencies] universal-hash = { version = "0.4", default-features = false } zeroize = { version = "1", optional = true, default-features = false }