From 4eb2d48368d54ad9407d5ca4ef4b154dde4918b5 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 16 Oct 2020 08:11:00 -0700 Subject: [PATCH] Release new versions (#63) These include the `crypto-mac` v0.10 update (#62), which is the first based on the new `cipher` crate. --- Cargo.lock | 8 ++++---- cmac/CHANGELOG.md | 6 ++++++ cmac/Cargo.toml | 2 +- daa/CHANGELOG.md | 6 ++++++ daa/Cargo.toml | 2 +- hmac/CHANGELOG.md | 6 ++++++ hmac/Cargo.toml | 2 +- pmac/CHANGELOG.md | 6 ++++++ pmac/Cargo.toml | 2 +- 9 files changed, 32 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 43ebb4d..de29f6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "cmac" -version = "0.5.0-pre" +version = "0.5.0" dependencies = [ "aes", "crypto-mac", @@ -100,7 +100,7 @@ dependencies = [ [[package]] name = "daa" -version = "0.4.0-pre" +version = "0.4.0" dependencies = [ "crypto-mac", "des", @@ -166,7 +166,7 @@ dependencies = [ [[package]] name = "hmac" -version = "0.10.0-pre" +version = "0.10.0" dependencies = [ "crypto-mac", "digest", @@ -213,7 +213,7 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "pmac" -version = "0.5.0-pre" +version = "0.5.0" dependencies = [ "aes", "crypto-mac", diff --git a/cmac/CHANGELOG.md b/cmac/CHANGELOG.md index 7a16b0a..cfcfc06 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.5.0 (2020-10-16) +### Changed +- Bump `crypto-mac` dependency to v0.10 ([#62]) + +[#62]: https://github.com/RustCrypto/MACs/pull/62 + ## 0.4.0 (2020-08-12) ### Changed - Bump `crypto-mac` dependency to v0.9, implement the `FromBlockCipher` trait ([#57]) diff --git a/cmac/Cargo.toml b/cmac/Cargo.toml index 97f1e84..b067ad4 100644 --- a/cmac/Cargo.toml +++ b/cmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cmac" -version = "0.5.0-pre" +version = "0.5.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 a162704..6f411c3 100644 --- a/daa/CHANGELOG.md +++ b/daa/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.4.0 (2020-10-16) +### Changed +- Bump `crypto-mac` dependency to v0.10 ([#62]) + +[#62]: https://github.com/RustCrypto/MACs/pull/62 + ## 0.3.0 (2020-08-12) ### Changed - Bump `crypto-mac` dependency to v0.9, implement the `FromBlockCipher` trait ([#57]) diff --git a/daa/Cargo.toml b/daa/Cargo.toml index e5be2a5..a25dc7a 100644 --- a/daa/Cargo.toml +++ b/daa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "daa" -version = "0.4.0-pre" +version = "0.4.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 18a68c4..b598b60 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.10.0 (2020-10-16) +### Changed +- Bump `crypto-mac` dependency to v0.10 ([#62]) + +[#62]: https://github.com/RustCrypto/MACs/pull/62 + ## 0.9.0 (2020-08-12) ### Changed - Bump `crypto-mac` dependency to v0.9 ([#57]) diff --git a/hmac/Cargo.toml b/hmac/Cargo.toml index f438ede..6411678 100644 --- a/hmac/Cargo.toml +++ b/hmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hmac" -version = "0.10.0-pre" +version = "0.10.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 5f4221b..31c43b7 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.5.0 (2020-10-16) +### Changed +- Bump `crypto-mac` dependency to v0.10 ([#62]) + +[#62]: https://github.com/RustCrypto/MACs/pull/62 + ## 0.4.0 (2020-08-12) ### Changed - Bump `crypto-mac` dependency to v0.9, implement the `FromBlockCipher` trait ([#57]) diff --git a/pmac/Cargo.toml b/pmac/Cargo.toml index 4a7b555..0b2868d 100644 --- a/pmac/Cargo.toml +++ b/pmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pmac" -version = "0.5.0-pre" +version = "0.5.0" description = "Generic implementation of Parallelizable Message Authentication Code" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"