From 82d93cae1c24f833a4c4e1312d58d0f624b9415d Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 29 Apr 2021 10:58:04 -0700 Subject: [PATCH] Release new `crypto-mac` v0.11-based versions Release notes: https://github.com/RustCrypto/traits/pull/622 --- Cargo.lock | 8 ++++---- cmac/CHANGELOG.md | 6 ++++++ cmac/Cargo.toml | 2 +- daa/CHANGELOG.md | 8 ++++++++ daa/Cargo.toml | 2 +- hmac/CHANGELOG.md | 6 ++++++ hmac/Cargo.toml | 2 +- pmac/CHANGELOG.md | 6 ++++++ pmac/Cargo.toml | 2 +- 9 files changed, 34 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 49ce2a6..f67ac81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,7 +57,7 @@ dependencies = [ [[package]] name = "cmac" -version = "0.6.0-pre" +version = "0.6.0" dependencies = [ "aes", "crypto-mac", @@ -93,7 +93,7 @@ dependencies = [ [[package]] name = "daa" -version = "0.5.0-pre" +version = "0.5.0" dependencies = [ "crypto-mac", "des", @@ -159,7 +159,7 @@ dependencies = [ [[package]] name = "hmac" -version = "0.11.0-pre" +version = "0.11.0" dependencies = [ "crypto-mac", "digest", @@ -207,7 +207,7 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "pmac" -version = "0.6.0-pre" +version = "0.6.0" dependencies = [ "aes", "crypto-mac", diff --git a/cmac/CHANGELOG.md b/cmac/CHANGELOG.md index e431b61..5de75ce 100644 --- a/cmac/CHANGELOG.md +++ b/cmac/CHANGELOG.md @@ -5,6 +5,12 @@ 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 (2021-04-29) +### Changed +- Bump `crypto-mac` crate dependency to v0.11 ([#73]) + +[#73]: https://github.com/RustCrypto/MACs/pull/73 + ## 0.5.1 (2020-10-16) ### Added - Zulip badge ([#64]) diff --git a/cmac/Cargo.toml b/cmac/Cargo.toml index dc1ed38..3255ef6 100644 --- a/cmac/Cargo.toml +++ b/cmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cmac" -version = "0.6.0-pre" +version = "0.6.0" description = "Generic implementation of Cipher-based Message Authentication Code" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/daa/CHANGELOG.md b/daa/CHANGELOG.md index c44372e..8923f98 100644 --- a/daa/CHANGELOG.md +++ b/daa/CHANGELOG.md @@ -5,6 +5,14 @@ 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.5.0 (2021-04-29) +### Changed +- Bump `crypto-mac` crate dependency to v0.11 ([#73]) +- Bump `des` crate dependency to v0.7 ([#75]) + +[#73]: https://github.com/RustCrypto/MACs/pull/73 +[#75]: https://github.com/RustCrypto/MACs/pull/75 + ## 0.4.1 (2020-10-16) ### Added - Zulip badge ([#64]) diff --git a/daa/Cargo.toml b/daa/Cargo.toml index 3d59625..30c6fb7 100644 --- a/daa/Cargo.toml +++ b/daa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daa" -version = "0.5.0-pre" +version = "0.5.0" description = "Implementation of Data Authentication Algorithm (DAA)" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/hmac/CHANGELOG.md b/hmac/CHANGELOG.md index f846723..77a2f7b 100644 --- a/hmac/CHANGELOG.md +++ b/hmac/CHANGELOG.md @@ -5,6 +5,12 @@ 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.11.0 (2021-04-29) +### Changed +- Bump `crypto-mac` crate dependency to v0.11 ([#73]) + +[#73]: https://github.com/RustCrypto/MACs/pull/73 + ## 0.10.1 (2020-10-16) ### Added - Zulip badge ([#64]) diff --git a/hmac/Cargo.toml b/hmac/Cargo.toml index d09fc69..23544f6 100644 --- a/hmac/Cargo.toml +++ b/hmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hmac" -version = "0.11.0-pre" +version = "0.11.0" description = "Generic implementation of Hash-based Message Authentication Code (HMAC)" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/pmac/CHANGELOG.md b/pmac/CHANGELOG.md index f06e8f2..c46b4d5 100644 --- a/pmac/CHANGELOG.md +++ b/pmac/CHANGELOG.md @@ -5,6 +5,12 @@ 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 (2021-04-29) +### Changed +- Bump `crypto-mac` crate dependency to v0.11 ([#73]) + +[#73]: https://github.com/RustCrypto/MACs/pull/73 + ## 0.5.1 (2020-10-16) ### Added - Zulip badge ([#64]) diff --git a/pmac/Cargo.toml b/pmac/Cargo.toml index 08367d1..b830a03 100644 --- a/pmac/Cargo.toml +++ b/pmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pmac" -version = "0.6.0-pre" +version = "0.6.0" description = "Generic implementation of Parallelizable Message Authentication Code" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"