From 61ca06f96e3616697a8c58be2be8f0a78cb17a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Tue, 16 Jun 2026 21:25:16 +0300 Subject: [PATCH] Release camellia v0.2.1 --- Cargo.lock | 14 +++++++------- camellia/CHANGELOG.md | 2 +- camellia/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f0bb8639..d58529b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -37,9 +37,9 @@ checksum = "89af0b093cc13baa4e51e64e65ec2422f7e73aea0e612e5ad3872986671622f1" [[package]] name = "block-buffer" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be" +checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa" dependencies = [ "hybrid-array", "zeroize", @@ -61,7 +61,7 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "camellia" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cipher", ] @@ -260,9 +260,9 @@ dependencies = [ [[package]] name = "typenum" -version = "1.20.0" +version = "1.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" [[package]] name = "xtea" @@ -273,6 +273,6 @@ dependencies = [ [[package]] name = "zeroize" -version = "1.8.2" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" diff --git a/camellia/CHANGELOG.md b/camellia/CHANGELOG.md index 114b0cc6..3f3fca4b 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.1 (UNRELEASED) +## 0.2.1 (2026-06-16) ### Changed - Removed unused `byteorder` dependency ([#566]) diff --git a/camellia/Cargo.toml b/camellia/Cargo.toml index 269d36e7..397f56b9 100644 --- a/camellia/Cargo.toml +++ b/camellia/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "camellia" -version = "0.2.0" +version = "0.2.1" description = "Camellia block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"