diff --git a/Cargo.lock b/Cargo.lock index f22bbb55..c112554c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -15,7 +15,7 @@ dependencies = [ [[package]] name = "aria" -version = "0.2.0-rc.1" +version = "0.2.0" dependencies = [ "cipher", "hex-literal", @@ -23,7 +23,7 @@ dependencies = [ [[package]] name = "belt-block" -version = "0.2.0-rc.3" +version = "0.2.0" dependencies = [ "cipher", "hex-literal", @@ -47,7 +47,7 @@ dependencies = [ [[package]] name = "blowfish" -version = "0.10.0-rc.3" +version = "0.10.0" dependencies = [ "byteorder", "cipher", @@ -61,7 +61,7 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "camellia" -version = "0.2.0-rc.1" +version = "0.2.0" dependencies = [ "byteorder", "cipher", @@ -69,7 +69,7 @@ dependencies = [ [[package]] name = "cast5" -version = "0.12.0-rc.1" +version = "0.12.0" dependencies = [ "cipher", "hex-literal", @@ -77,7 +77,7 @@ dependencies = [ [[package]] name = "cast6" -version = "0.2.0-rc.1" +version = "0.2.0" dependencies = [ "cipher", "hex-literal", @@ -128,7 +128,7 @@ dependencies = [ [[package]] name = "des" -version = "0.9.0-rc.3" +version = "0.9.0" dependencies = [ "cipher", "hex-literal", @@ -136,7 +136,7 @@ dependencies = [ [[package]] name = "gift-cipher" -version = "0.1.0-rc.3" +version = "0.1.0" dependencies = [ "cipher", "hex-literal", @@ -160,7 +160,7 @@ dependencies = [ [[package]] name = "idea" -version = "0.6.0-rc.1" +version = "0.6.0" dependencies = [ "cipher", ] @@ -176,7 +176,7 @@ dependencies = [ [[package]] name = "kuznyechik" -version = "0.9.0-rc.3" +version = "0.9.0" dependencies = [ "cfg-if", "cipher", @@ -191,7 +191,7 @@ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af" [[package]] name = "magma" -version = "0.10.0-rc.3" +version = "0.10.0" dependencies = [ "cipher", "hex-literal", @@ -199,14 +199,14 @@ dependencies = [ [[package]] name = "rc2" -version = "0.9.0-rc.1" +version = "0.9.0" dependencies = [ "cipher", ] [[package]] name = "rc5" -version = "0.1.0-rc.1" +version = "0.1.0" dependencies = [ "cipher", "hex-literal", @@ -214,21 +214,21 @@ dependencies = [ [[package]] name = "rc6" -version = "0.1.0-rc.3" +version = "0.1.0" dependencies = [ "cipher", ] [[package]] name = "serpent" -version = "0.6.0-rc.3" +version = "0.6.0" dependencies = [ "cipher", ] [[package]] name = "sm4" -version = "0.6.0-rc.3" +version = "0.6.0" dependencies = [ "cipher", "hex-literal", @@ -236,7 +236,7 @@ dependencies = [ [[package]] name = "speck-cipher" -version = "0.1.0-rc.3" +version = "0.1.0" dependencies = [ "cipher", "hex-literal", @@ -244,7 +244,7 @@ dependencies = [ [[package]] name = "threefish" -version = "0.6.0-rc.1" +version = "0.6.0" dependencies = [ "cipher", "hex-literal", @@ -253,7 +253,7 @@ dependencies = [ [[package]] name = "twofish" -version = "0.8.0-rc.1" +version = "0.8.0" dependencies = [ "cipher", "hex-literal", @@ -267,7 +267,7 @@ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" [[package]] name = "xtea" -version = "0.1.0-rc.1" +version = "0.1.0" dependencies = [ "cipher", ] diff --git a/aria/CHANGELOG.md b/aria/CHANGELOG.md index 0e8235a9..9a9f8c08 100644 --- a/aria/CHANGELOG.md +++ b/aria/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 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/aria/Cargo.toml b/aria/Cargo.toml index 7351794c..65d4373d 100644 --- a/aria/Cargo.toml +++ b/aria/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aria" -version = "0.2.0-rc.1" +version = "0.2.0" description = "Pure Rust implementation of the ARIA Encryption Algorithm" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/belt-block/CHANGELOG.md b/belt-block/CHANGELOG.md index c8634087..3a5221bb 100644 --- a/belt-block/CHANGELOG.md +++ b/belt-block/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 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Mark `to_u32` function as private ([#402]) diff --git a/belt-block/Cargo.toml b/belt-block/Cargo.toml index 41a4e7f9..91244188 100644 --- a/belt-block/Cargo.toml +++ b/belt-block/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "belt-block" -version = "0.2.0-rc.3" +version = "0.2.0" description = "belt-block block cipher implementation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/blowfish/CHANGELOG.md b/blowfish/CHANGELOG.md index 415ca5d9..5b8501f8 100644 --- a/blowfish/CHANGELOG.md +++ b/blowfish/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.10.0 (UNRELEASED) +## 0.10.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5.0 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/blowfish/Cargo.toml b/blowfish/Cargo.toml index 1883204b..7e197c09 100644 --- a/blowfish/Cargo.toml +++ b/blowfish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blowfish" -version = "0.10.0-rc.3" +version = "0.10.0" description = "Blowfish block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/camellia/CHANGELOG.md b/camellia/CHANGELOG.md index 16f0377d..e82745a6 100644 --- a/camellia/CHANGELOG.md +++ b/camellia/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 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5.0 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/camellia/Cargo.toml b/camellia/Cargo.toml index 9f4ecfbf..5c73fab9 100644 --- a/camellia/Cargo.toml +++ b/camellia/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "camellia" -version = "0.2.0-rc.1" +version = "0.2.0" description = "Camellia block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cast5/CHANGELOG.md b/cast5/CHANGELOG.md index 3e625c5c..2e8b8501 100644 --- a/cast5/CHANGELOG.md +++ b/cast5/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.12.0 (UNRELEASED) +## 0.12.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5.0 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/cast5/Cargo.toml b/cast5/Cargo.toml index 7835ffef..bce6cdf9 100644 --- a/cast5/Cargo.toml +++ b/cast5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cast5" -version = "0.12.0-rc.1" +version = "0.12.0" description = "CAST5 block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cast6/CHANGELOG.md b/cast6/CHANGELOG.md index edaf78c2..4cf57b94 100644 --- a/cast6/CHANGELOG.md +++ b/cast6/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 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5.0 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/cast6/Cargo.toml b/cast6/Cargo.toml index 89b8cc09..d1bde973 100644 --- a/cast6/Cargo.toml +++ b/cast6/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cast6" -version = "0.2.0-rc.1" +version = "0.2.0" description = "CAST6 block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/des/CHANGELOG.md b/des/CHANGELOG.md index f4f4f846..5434e064 100644 --- a/des/CHANGELOG.md +++ b/des/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.9.0 (UNRELEASED) +## 0.9.0 (2026-04-10) ### Added - `weak_key_test` function for weak key detection ([#528]) diff --git a/des/Cargo.toml b/des/Cargo.toml index d0f69335..14fc5645 100644 --- a/des/Cargo.toml +++ b/des/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "des" -version = "0.9.0-rc.3" +version = "0.9.0" description = "DES and Triple DES (3DES, TDES) block ciphers implementation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/gift-cipher/CHANGELOG.md b/gift-cipher/CHANGELOG.md index b6b31acc..514340c5 100644 --- a/gift-cipher/CHANGELOG.md +++ b/gift-cipher/CHANGELOG.md @@ -5,14 +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) -### Changed -- Bump `cipher` dependency to v0.5 -- Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) -- Relax MSRV policy and allow MSRV bumps in patch releases ([#477]) +## 0.1.0 (2026-04-10) +- Initial release ([#322]) -[#472]: https://github.com/RustCrypto/block-ciphers/pull/472 -[#477]: https://github.com/RustCrypto/block-ciphers/pull/477 - -## 0.1.0 (2022-08-16) -- Initial release +[#322]: https://github.com/RustCrypto/block-ciphers/pull/322 diff --git a/gift-cipher/Cargo.toml b/gift-cipher/Cargo.toml index 9d92d15a..2104abdc 100644 --- a/gift-cipher/Cargo.toml +++ b/gift-cipher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gift-cipher" -version = "0.1.0-rc.3" +version = "0.1.0" description = "Pure Rust implementation of the Gift block cipher" authors = ["RustCrypto Developers", "Schmid7k"] license = "MIT OR Apache-2.0" diff --git a/idea/CHANGELOG.md b/idea/CHANGELOG.md index 9b8486fa..6aa9bce4 100644 --- a/idea/CHANGELOG.md +++ b/idea/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.6.0 (UNRELEASED) +## 0.6.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/idea/Cargo.toml b/idea/Cargo.toml index 7f74f1c6..78bc3494 100644 --- a/idea/Cargo.toml +++ b/idea/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "idea" -version = "0.6.0-rc.1" +version = "0.6.0" description = "IDEA block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/kuznyechik/CHANGELOG.md b/kuznyechik/CHANGELOG.md index a8c0d02d..994f89c5 100644 --- a/kuznyechik/CHANGELOG.md +++ b/kuznyechik/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.9.0 (UNRELEASED) +## 0.9.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/kuznyechik/Cargo.toml b/kuznyechik/Cargo.toml index f865fc07..e6fb3a74 100644 --- a/kuznyechik/Cargo.toml +++ b/kuznyechik/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuznyechik" -version = "0.9.0-rc.3" +version = "0.9.0" description = "Kuznyechik (GOST R 34.12-2015) block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/magma/CHANGELOG.md b/magma/CHANGELOG.md index 904f0984..57ae27db 100644 --- a/magma/CHANGELOG.md +++ b/magma/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.10.0 (UNRELEASED) +## 0.10.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/magma/Cargo.toml b/magma/Cargo.toml index 96bd663a..d58649ac 100644 --- a/magma/Cargo.toml +++ b/magma/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magma" -version = "0.10.0-rc.3" +version = "0.10.0" description = "Magma (GOST R 34.12-2015) block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/rc2/CHANGELOG.md b/rc2/CHANGELOG.md index 27b8246b..fbae9518 100644 --- a/rc2/CHANGELOG.md +++ b/rc2/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.9.0 (UNRELEASED) +## 0.9.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/rc2/Cargo.toml b/rc2/Cargo.toml index 870389b0..d0497ec2 100644 --- a/rc2/Cargo.toml +++ b/rc2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc2" -version = "0.9.0-rc.1" +version = "0.9.0" description = "RC2 block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/rc5/CHANGELOG.md b/rc5/CHANGELOG.md index 679d09e7..7b171967 100644 --- a/rc5/CHANGELOG.md +++ b/rc5/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.1.0 (UNRELEASED) +## 0.1.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/rc5/Cargo.toml b/rc5/Cargo.toml index 467ab71b..46eb01eb 100644 --- a/rc5/Cargo.toml +++ b/rc5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc5" -version = "0.1.0-rc.1" +version = "0.1.0" description = "RC5 block cipher" authors = ["RustCrypto Developers"] edition = "2024" diff --git a/rc6/CHANGELOG.md b/rc6/CHANGELOG.md new file mode 100644 index 00000000..83f40153 --- /dev/null +++ b/rc6/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +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 (2026-04-10) +Initial release ([#439]) + +[#439]: https://github.com/RustCrypto/block-ciphers/pull/439 diff --git a/rc6/Cargo.toml b/rc6/Cargo.toml index c9e8e7bd..1166c59d 100644 --- a/rc6/Cargo.toml +++ b/rc6/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc6" -version = "0.1.0-rc.3" +version = "0.1.0" description = "RC6 block cipher" authors = ["RustCrypto Developers"] edition = "2024" diff --git a/serpent/CHANGELOG.md b/serpent/CHANGELOG.md index 5f69376a..460d35b6 100644 --- a/serpent/CHANGELOG.md +++ b/serpent/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.6.0 (UNRELEASED) +## 0.6.0 (2026-04-10) ### Added - `serpent_no_unroll` configuration flag ([#476]) diff --git a/serpent/Cargo.toml b/serpent/Cargo.toml index 56175a77..4526c001 100644 --- a/serpent/Cargo.toml +++ b/serpent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serpent" -version = "0.6.0-rc.3" +version = "0.6.0" description = "Serpent block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/sm4/CHANGELOG.md b/sm4/CHANGELOG.md index 207c76a2..20d2d7a3 100644 --- a/sm4/CHANGELOG.md +++ b/sm4/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.6.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/sm4/Cargo.toml b/sm4/Cargo.toml index ea07e7ac..55e17180 100644 --- a/sm4/Cargo.toml +++ b/sm4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sm4" -version = "0.6.0-rc.3" +version = "0.6.0" description = "SM4 block cipher algorithm" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/speck-cipher/CHANGELOG.md b/speck-cipher/CHANGELOG.md index 3515a408..c294bea2 100644 --- a/speck-cipher/CHANGELOG.md +++ b/speck-cipher/CHANGELOG.md @@ -5,14 +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) -### Changed -- Bump `cipher` dependency to v0.5 -- Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) -- Relax MSRV policy and allow MSRV bumps in patch releases ([#477]) +## 0.1.0 (2026-04-10) +Initial release ([#297]) -[#472]: https://github.com/RustCrypto/block-ciphers/pull/472 -[#477]: https://github.com/RustCrypto/block-ciphers/pull/477 - -## 0.0.1 (2024-05-17) -- Initial release +[#297]: https://github.com/RustCrypto/block-ciphers/pull/297 diff --git a/speck-cipher/Cargo.toml b/speck-cipher/Cargo.toml index 400678b8..a37a9ff7 100644 --- a/speck-cipher/Cargo.toml +++ b/speck-cipher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "speck-cipher" -version = "0.1.0-rc.3" +version = "0.1.0" authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" description = "Speck block cipher algorithm" diff --git a/threefish/CHANGELOG.md b/threefish/CHANGELOG.md index d99d73f7..96c43f11 100644 --- a/threefish/CHANGELOG.md +++ b/threefish/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.6.0 (UNRELEASED) +## 0.6.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/threefish/Cargo.toml b/threefish/Cargo.toml index 8e881646..61b068db 100644 --- a/threefish/Cargo.toml +++ b/threefish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "threefish" -version = "0.6.0-rc.1" +version = "0.6.0" description = "Threefish block cipher" authors = ["The Rust-Crypto Project Developers"] license = "MIT OR Apache-2.0" diff --git a/twofish/CHANGELOG.md b/twofish/CHANGELOG.md index ee2c3b90..344e58c7 100644 --- a/twofish/CHANGELOG.md +++ b/twofish/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.8.0 (UNRELEASED) +## 0.8.0 (2026-04-10) ### Changed - Bump `cipher` dependency to v0.5 - Edition changed to 2024 and MSRV bumped to 1.85 ([#472]) diff --git a/twofish/Cargo.toml b/twofish/Cargo.toml index 2f3f607c..32a17322 100644 --- a/twofish/Cargo.toml +++ b/twofish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twofish" -version = "0.8.0-rc.1" +version = "0.8.0" description = "Twofish block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/xtea/CHANGELOG.md b/xtea/CHANGELOG.md index 0e07e464..b43dcc05 100644 --- a/xtea/CHANGELOG.md +++ b/xtea/CHANGELOG.md @@ -3,4 +3,9 @@ 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). \ No newline at end of file +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## 0.1.0 (2026-04-10) +Initial release ([#422]) + +[#422]: https://github.com/RustCrypto/block-ciphers/pull/422 diff --git a/xtea/Cargo.toml b/xtea/Cargo.toml index 1215fcbb..ab09c732 100644 --- a/xtea/Cargo.toml +++ b/xtea/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtea" -version = "0.1.0-rc.1" +version = "0.1.0" description = "XTEA block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"