From 463fb146653790e9557e5c92bf78d915a7d79631 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 3 Jan 2026 11:43:38 -0700 Subject: [PATCH] Cut new prereleases Cuts release candidates of all crates which have not yet received such a release: - `aria` v0.2.0-rc.0 - `camellia` v0.2.0-rc.0 - `cast5` v0.12.0-rc.0 - `cast6` v0.2.0-rc.0 - `idea` v0.6.0-rc.0 - `rc2` v0.9.0-rc.0 - `rc5` v0.1.0-rc.0 - `threefish` v0.6.0-rc.0 - `twofish` v0.8.0-rc.0 - `xtea` v0.1.0-rc.0 --- Cargo.lock | 20 ++++++++++---------- aria/Cargo.toml | 2 +- camellia/Cargo.toml | 2 +- cast5/Cargo.toml | 2 +- cast6/Cargo.toml | 2 +- idea/Cargo.toml | 2 +- rc2/Cargo.toml | 2 +- rc5/Cargo.toml | 2 +- threefish/Cargo.toml | 2 +- twofish/Cargo.toml | 2 +- xtea/CHANGELOG.md | 14 +------------- xtea/Cargo.toml | 2 +- 12 files changed, 21 insertions(+), 33 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d932fc6c..1d8e547f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -15,7 +15,7 @@ dependencies = [ [[package]] name = "aria" -version = "0.2.0-pre" +version = "0.2.0-rc.0" dependencies = [ "cipher", "hex-literal", @@ -61,7 +61,7 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "camellia" -version = "0.2.0-pre" +version = "0.2.0-rc.0" dependencies = [ "byteorder", "cipher", @@ -69,7 +69,7 @@ dependencies = [ [[package]] name = "cast5" -version = "0.12.0-pre" +version = "0.12.0-rc.0" dependencies = [ "cipher", "hex-literal", @@ -77,7 +77,7 @@ dependencies = [ [[package]] name = "cast6" -version = "0.2.0-pre" +version = "0.2.0-rc.0" dependencies = [ "cipher", "hex-literal", @@ -154,7 +154,7 @@ dependencies = [ [[package]] name = "idea" -version = "0.6.0-pre" +version = "0.6.0-rc.0" dependencies = [ "cipher", ] @@ -193,14 +193,14 @@ dependencies = [ [[package]] name = "rc2" -version = "0.9.0-pre.0" +version = "0.9.0-rc.0" dependencies = [ "cipher", ] [[package]] name = "rc5" -version = "0.1.0-pre" +version = "0.1.0-rc.0" dependencies = [ "cipher", "hex-literal", @@ -238,7 +238,7 @@ dependencies = [ [[package]] name = "threefish" -version = "0.6.0-pre" +version = "0.6.0-rc.0" dependencies = [ "cipher", "hex-literal", @@ -247,7 +247,7 @@ dependencies = [ [[package]] name = "twofish" -version = "0.8.0-pre" +version = "0.8.0-rc.0" dependencies = [ "cipher", "hex-literal", @@ -261,7 +261,7 @@ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" [[package]] name = "xtea" -version = "0.0.1-pre.0" +version = "0.1.0-rc.0" dependencies = [ "cipher", ] diff --git a/aria/Cargo.toml b/aria/Cargo.toml index 5f3f8be5..4337ee66 100644 --- a/aria/Cargo.toml +++ b/aria/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aria" -version = "0.2.0-pre" +version = "0.2.0-rc.0" description = "Pure Rust implementation of the ARIA Encryption Algorithm" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/camellia/Cargo.toml b/camellia/Cargo.toml index 6339fe28..a2e82236 100644 --- a/camellia/Cargo.toml +++ b/camellia/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "camellia" -version = "0.2.0-pre" +version = "0.2.0-rc.0" description = "Camellia block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cast5/Cargo.toml b/cast5/Cargo.toml index 2b2dcd62..6f388999 100644 --- a/cast5/Cargo.toml +++ b/cast5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cast5" -version = "0.12.0-pre" +version = "0.12.0-rc.0" description = "CAST5 block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cast6/Cargo.toml b/cast6/Cargo.toml index eab559df..8a39cb25 100644 --- a/cast6/Cargo.toml +++ b/cast6/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cast6" -version = "0.2.0-pre" +version = "0.2.0-rc.0" description = "CAST6 block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/idea/Cargo.toml b/idea/Cargo.toml index ae6b375e..568382fa 100644 --- a/idea/Cargo.toml +++ b/idea/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "idea" -version = "0.6.0-pre" +version = "0.6.0-rc.0" description = "IDEA block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/rc2/Cargo.toml b/rc2/Cargo.toml index e55a36c1..49fa44a8 100644 --- a/rc2/Cargo.toml +++ b/rc2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc2" -version = "0.9.0-pre.0" +version = "0.9.0-rc.0" description = "RC2 block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/rc5/Cargo.toml b/rc5/Cargo.toml index b1df8170..b0fb0cf4 100644 --- a/rc5/Cargo.toml +++ b/rc5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc5" -version = "0.1.0-pre" +version = "0.1.0-rc.0" description = "RC5 block cipher" authors = ["RustCrypto Developers"] edition = "2024" diff --git a/threefish/Cargo.toml b/threefish/Cargo.toml index aa01e5d5..376dd6b3 100644 --- a/threefish/Cargo.toml +++ b/threefish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "threefish" -version = "0.6.0-pre" +version = "0.6.0-rc.0" description = "Threefish block cipher" authors = ["The Rust-Crypto Project Developers"] license = "MIT OR Apache-2.0" diff --git a/twofish/Cargo.toml b/twofish/Cargo.toml index 75776f65..7d40fbf1 100644 --- a/twofish/Cargo.toml +++ b/twofish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twofish" -version = "0.8.0-pre" +version = "0.8.0-rc.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 5d95b2b2..0e07e464 100644 --- a/xtea/CHANGELOG.md +++ b/xtea/CHANGELOG.md @@ -3,16 +3,4 @@ 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]) - -[#472]: https://github.com/RustCrypto/block-ciphers/pull/472 -[#477]: https://github.com/RustCrypto/block-ciphers/pull/477 - -## 0.1.0 (2024-05-11) -- Initial release +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). \ No newline at end of file diff --git a/xtea/Cargo.toml b/xtea/Cargo.toml index 4bcbfe5a..b8d2df24 100644 --- a/xtea/Cargo.toml +++ b/xtea/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtea" -version = "0.0.1-pre.0" +version = "0.1.0-rc.0" description = "XTEA block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"