diff --git a/Cargo.lock b/Cargo.lock index e40ab5dc..10d47967 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ checksum = "bfed5cd32720841afa8cd58c89a317e9efb0c8083e1b349dae4098f022620353" [[package]] name = "bash-hash" -version = "0.1.0-rc.1" +version = "0.1.0" dependencies = [ "bash-f", "digest", @@ -45,7 +45,7 @@ checksum = "d9aa1eef3994e2ccd304a78fe3fea4a73e5792007f85f09b79bb82143ca5f82b" [[package]] name = "belt-hash" -version = "0.2.0-rc.5" +version = "0.2.0" dependencies = [ "belt-block", "digest", @@ -137,7 +137,7 @@ dependencies = [ [[package]] name = "fsb" -version = "0.2.0-rc.2" +version = "0.2.0" dependencies = [ "digest", "hex-literal", @@ -146,7 +146,7 @@ dependencies = [ [[package]] name = "gost94" -version = "0.11.0-rc.2" +version = "0.11.0" dependencies = [ "digest", "hex-literal", @@ -154,7 +154,7 @@ dependencies = [ [[package]] name = "groestl" -version = "0.11.0-rc.2" +version = "0.11.0" dependencies = [ "digest", "hex-literal", @@ -183,7 +183,7 @@ dependencies = [ [[package]] name = "jh" -version = "0.2.0-rc.1" +version = "0.2.0" dependencies = [ "digest", "hex-literal", @@ -211,7 +211,7 @@ dependencies = [ [[package]] name = "kupyna" -version = "0.1.0-pre.0" +version = "0.1.0" dependencies = [ "digest", "hex-literal", @@ -225,7 +225,7 @@ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" [[package]] name = "md-5" -version = "0.11.0-rc.5" +version = "0.11.0" dependencies = [ "cfg-if", "digest", @@ -234,7 +234,7 @@ dependencies = [ [[package]] name = "md2" -version = "0.11.0-rc.2" +version = "0.11.0" dependencies = [ "digest", "hex-literal", @@ -242,7 +242,7 @@ dependencies = [ [[package]] name = "md4" -version = "0.11.0-rc.2" +version = "0.11.0" dependencies = [ "digest", "hex-literal", @@ -277,7 +277,7 @@ dependencies = [ [[package]] name = "ripemd" -version = "0.2.0-rc.5" +version = "0.2.0" dependencies = [ "digest", "hex-literal", @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "shabal" -version = "0.5.0-rc.2" +version = "0.5.0" dependencies = [ "digest", "hex-literal", @@ -332,7 +332,7 @@ dependencies = [ [[package]] name = "skein" -version = "0.2.0-rc.2" +version = "0.2.0" dependencies = [ "digest", "hex-literal", @@ -341,7 +341,7 @@ dependencies = [ [[package]] name = "sm3" -version = "0.5.0-rc.5" +version = "0.5.0" dependencies = [ "digest", "hex-literal", @@ -355,7 +355,7 @@ checksum = "ae3c15181f4b14e52eeaac3efaeec4d2764716ce9c86da0c934c3e318649c5ba" [[package]] name = "streebog" -version = "0.11.0-rc.5" +version = "0.11.0" dependencies = [ "digest", "hex-literal", @@ -383,7 +383,7 @@ dependencies = [ [[package]] name = "tiger" -version = "0.3.0-rc.2" +version = "0.3.0" dependencies = [ "digest", "hex-literal", @@ -403,7 +403,7 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" [[package]] name = "whirlpool" -version = "0.11.0-rc.5" +version = "0.11.0" dependencies = [ "digest", "hex-literal", diff --git a/bash-hash/CHANGELOG.md b/bash-hash/CHANGELOG.md index a3a56b13..14f8d76d 100644 --- a/bash-hash/CHANGELOG.md +++ b/bash-hash/CHANGELOG.md @@ -5,8 +5,7 @@ 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.1.0 (UNRELEASED) +## 0.1.0 (2023-03-27) - Initial release ([#745]) [#745]: https://github.com/RustCrypto/hashes/pull/745 diff --git a/bash-hash/Cargo.toml b/bash-hash/Cargo.toml index 8fdaa2eb..7f20276f 100644 --- a/bash-hash/Cargo.toml +++ b/bash-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bash-hash" -version = "0.1.0-rc.1" +version = "0.1.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/belt-hash/CHANGELOG.md b/belt-hash/CHANGELOG.md index 9ebeb733..0b189bec 100644 --- a/belt-hash/CHANGELOG.md +++ b/belt-hash/CHANGELOG.md @@ -5,7 +5,7 @@ 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.2.0 (UNRELEASED) +## 0.2.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/belt-hash/Cargo.toml b/belt-hash/Cargo.toml index 1a6d6bac..f0634110 100644 --- a/belt-hash/Cargo.toml +++ b/belt-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "belt-hash" -version = "0.2.0-rc.5" +version = "0.2.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/fsb/CHANGELOG.md b/fsb/CHANGELOG.md index e38efba5..1dd1bd21 100644 --- a/fsb/CHANGELOG.md +++ b/fsb/CHANGELOG.md @@ -5,7 +5,7 @@ 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.2.0 (UNRELEASED) +## 0.2.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/fsb/Cargo.toml b/fsb/Cargo.toml index 676d1eca..bf62f1f5 100644 --- a/fsb/Cargo.toml +++ b/fsb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fsb" -version = "0.2.0-rc.2" +version = "0.2.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/gost94/CHANGELOG.md b/gost94/CHANGELOG.md index 92f11872..7a8f7598 100644 --- a/gost94/CHANGELOG.md +++ b/gost94/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.11.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/gost94/Cargo.toml b/gost94/Cargo.toml index 4392902b..eb6a8d3d 100644 --- a/gost94/Cargo.toml +++ b/gost94/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gost94" -version = "0.11.0-rc.2" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/groestl/CHANGELOG.md b/groestl/CHANGELOG.md index fd9da0a9..0ff48acb 100644 --- a/groestl/CHANGELOG.md +++ b/groestl/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.11.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/groestl/Cargo.toml b/groestl/Cargo.toml index 4a174e73..2e5c755d 100644 --- a/groestl/Cargo.toml +++ b/groestl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "groestl" -version = "0.11.0-rc.2" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/jh/CHANGELOG.md b/jh/CHANGELOG.md index 66c7b8ea..acedbe6a 100644 --- a/jh/CHANGELOG.md +++ b/jh/CHANGELOG.md @@ -5,7 +5,7 @@ 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.2.0 (UNRELEASED) +## 0.2.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/jh/Cargo.toml b/jh/Cargo.toml index 66d73966..f90247c1 100644 --- a/jh/Cargo.toml +++ b/jh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jh" -version = "0.2.0-rc.1" +version = "0.2.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/kupyna/CHANGELOG.md b/kupyna/CHANGELOG.md index fa000c8b..49c88a35 100644 --- a/kupyna/CHANGELOG.md +++ b/kupyna/CHANGELOG.md @@ -4,5 +4,7 @@ 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.1.0 (UNRELEASED) -- Initial release +## 0.1.0 (2023-03-27) +- Initial release ([#621]) + +[#621]: https://github.com/RustCrypto/hashes/pull/621 diff --git a/kupyna/Cargo.toml b/kupyna/Cargo.toml index f718862f..27ec65e4 100644 --- a/kupyna/Cargo.toml +++ b/kupyna/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kupyna" -version = "0.1.0-pre.0" +version = "0.1.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/md2/CHANGELOG.md b/md2/CHANGELOG.md index 52832466..efc8d63c 100644 --- a/md2/CHANGELOG.md +++ b/md2/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.11.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/md2/Cargo.toml b/md2/Cargo.toml index 6ff293c2..72d7bc44 100644 --- a/md2/Cargo.toml +++ b/md2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md2" -version = "0.11.0-rc.2" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/md4/CHANGELOG.md b/md4/CHANGELOG.md index 27862f85..ac5fd2c1 100644 --- a/md4/CHANGELOG.md +++ b/md4/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.11.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/md4/Cargo.toml b/md4/Cargo.toml index d4ebb22a..31f1fb80 100644 --- a/md4/Cargo.toml +++ b/md4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md4" -version = "0.11.0-rc.2" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/md5/CHANGELOG.md b/md5/CHANGELOG.md index a39d4a16..38f72445 100644 --- a/md5/CHANGELOG.md +++ b/md5/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.11.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) - Expose compression function from the `block_api` module ([#735]) diff --git a/md5/Cargo.toml b/md5/Cargo.toml index aa6beb48..96a97162 100644 --- a/md5/Cargo.toml +++ b/md5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md-5" -version = "0.11.0-rc.5" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/ripemd/CHANGELOG.md b/ripemd/CHANGELOG.md index f496e618..ffac1e27 100644 --- a/ripemd/CHANGELOG.md +++ b/ripemd/CHANGELOG.md @@ -5,7 +5,7 @@ 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.2.0 (UNRELEASED) +## 0.2.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/ripemd/Cargo.toml b/ripemd/Cargo.toml index c89b0b95..ef935df9 100644 --- a/ripemd/Cargo.toml +++ b/ripemd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ripemd" -version = "0.2.0-rc.5" +version = "0.2.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/shabal/CHANGELOG.md b/shabal/CHANGELOG.md index 3af97a65..d3d5554d 100644 --- a/shabal/CHANGELOG.md +++ b/shabal/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.5.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/shabal/Cargo.toml b/shabal/Cargo.toml index decd7199..ad8e8a62 100644 --- a/shabal/Cargo.toml +++ b/shabal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shabal" -version = "0.5.0-rc.2" +version = "0.5.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/skein/CHANGELOG.md b/skein/CHANGELOG.md index 7127af4e..a170fa07 100644 --- a/skein/CHANGELOG.md +++ b/skein/CHANGELOG.md @@ -5,7 +5,7 @@ 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.2.0 (UNRELEASED) +## 0.2.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/skein/Cargo.toml b/skein/Cargo.toml index 682a0dfb..56926b99 100644 --- a/skein/Cargo.toml +++ b/skein/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skein" -version = "0.2.0-rc.2" +version = "0.2.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/sm3/CHANGELOG.md b/sm3/CHANGELOG.md index 41da3e0c..a6746c8d 100644 --- a/sm3/CHANGELOG.md +++ b/sm3/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.5.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) - `oid` crate feature and `AssociatedOid` trait implementation ([#706]) diff --git a/sm3/Cargo.toml b/sm3/Cargo.toml index 29679e71..84d721c8 100644 --- a/sm3/Cargo.toml +++ b/sm3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sm3" -version = "0.5.0-rc.5" +version = "0.5.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/streebog/CHANGELOG.md b/streebog/CHANGELOG.md index 5834cd23..cc7d4978 100644 --- a/streebog/CHANGELOG.md +++ b/streebog/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.11.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/streebog/Cargo.toml b/streebog/Cargo.toml index c50c337d..42678d3c 100644 --- a/streebog/Cargo.toml +++ b/streebog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "streebog" -version = "0.11.0-rc.5" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/tiger/Cargo.toml b/tiger/Cargo.toml index 15b7338d..6937ea0c 100644 --- a/tiger/Cargo.toml +++ b/tiger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiger" -version = "0.3.0-rc.2" +version = "0.3.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/whirlpool/CHANGELOG.md b/whirlpool/CHANGELOG.md index 9b62c2e7..c2dd1675 100644 --- a/whirlpool/CHANGELOG.md +++ b/whirlpool/CHANGELOG.md @@ -5,7 +5,7 @@ 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 (UNRELEASED) +## 0.11.0 (2023-03-27) ### Added - `alloc` crate feature ([#678]) diff --git a/whirlpool/Cargo.toml b/whirlpool/Cargo.toml index d63452ce..608b0f3d 100644 --- a/whirlpool/Cargo.toml +++ b/whirlpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "whirlpool" -version = "0.11.0-rc.5" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"