diff --git a/Cargo.lock b/Cargo.lock index 75be56fa..fbea7289 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,7 +111,7 @@ dependencies = [ [[package]] name = "des" -version = "0.9.0-pre" +version = "0.9.0-pre.0" dependencies = [ "cipher", ] diff --git a/des/CHANGELOG.md b/des/CHANGELOG.md index 6320ad6b..8586338d 100644 --- a/des/CHANGELOG.md +++ b/des/CHANGELOG.md @@ -5,6 +5,20 @@ 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 +- Remove `html_root_url` ([#344]) +- Update Clippy and fix lints ([#378]) +- Bump `cipher` to v0.5.0-pre.1; MSRV 1.65 ([#394]) +- Bump `cipher` dependency to v0.5.0-pre.2 ([#398]) +- bump `cipher` dependency to `0.5.0-pre.4` ([#413]) + +[#344]: https://github.com/RustCrypto/block-ciphers/pull/344 +[#378]: https://github.com/RustCrypto/block-ciphers/pull/378 +[#394]: https://github.com/RustCrypto/block-ciphers/pull/394 +[#398]: https://github.com/RustCrypto/block-ciphers/pull/398 +[#413]: https://github.com/RustCrypto/block-ciphers/pull/413 + ## 0.8.1 (2022-02-17) ### Fixed - Minimal versions build ([#303]) diff --git a/des/Cargo.toml b/des/Cargo.toml index 19250790..0d154427 100644 --- a/des/Cargo.toml +++ b/des/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "des" -version = "0.9.0-pre" +version = "0.9.0-pre.0" description = "DES and Triple DES (3DES, TDES) block ciphers implementation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"