diff --git a/Cargo.lock b/Cargo.lock index f1e4b179..abe3908f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -169,7 +169,7 @@ checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" [[package]] name = "magma" -version = "0.10.0-pre" +version = "0.10.0-pre.0" dependencies = [ "cipher", "hex-literal 0.4.1", diff --git a/magma/CHANGELOG.md b/magma/CHANGELOG.md index 01e0f8e5..c5242d8d 100644 --- a/magma/CHANGELOG.md +++ b/magma/CHANGELOG.md @@ -5,6 +5,18 @@ 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). +## Unreleased +### Changed +- Bump `cipher` to v0.5.0-pre.1; MSRV 1.65 ([#394]) +- Bump `cipher` dependency to v0.5.0-pre.2 ([#398]) +- Use `BlockCipherEncrypt`/`BlockCipherDecrypt` trait names ([#400]) +- bump `cipher` dependency to `0.5.0-pre.4` ([#413]) + +[#394]: https://github.com/RustCrypto/block-ciphers/pull/394 +[#398]: https://github.com/RustCrypto/block-ciphers/pull/398 +[#400]: https://github.com/RustCrypto/block-ciphers/pull/400 +[#413]: https://github.com/RustCrypto/block-ciphers/pull/413 + ## 0.9.0 (2023-08-06) ### Breaking changes - API of the `Sbox` trait is changed, S-Box expansion is now performed diff --git a/magma/Cargo.toml b/magma/Cargo.toml index e16df361..4001847c 100644 --- a/magma/Cargo.toml +++ b/magma/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magma" -version = "0.10.0-pre" +version = "0.10.0-pre.0" description = "Magma (GOST R 34.12-2015) block cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"