diff --git a/Cargo.lock b/Cargo.lock index 961251917..930e97109 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -157,7 +157,7 @@ checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" [[package]] name = "md-5" -version = "0.9.0-pre" +version = "0.9.0" dependencies = [ "block-buffer", "digest", diff --git a/md5/CHANGELOG.md b/md5/CHANGELOG.md new file mode 100644 index 000000000..bf48c6b5a --- /dev/null +++ b/md5/CHANGELOG.md @@ -0,0 +1,40 @@ +# 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.9.0 (2020-06-09) +### Changed +- Update to `digest` v0.9 release; MSRV 1.41+ ([#155]) +- Use new `*Dirty` traits from the `digest` crate ([#153]) +- Bump `block-buffer` to v0.8 release ([#151]) +- Rename `*result*` to `finalize` ([#148]) +- Update to Rust 2018 edition ([#128]) + +[#155]: https://github.com/RustCrypto/hashes/pull/155 +[#153]: https://github.com/RustCrypto/hashes/pull/153 +[#151]: https://github.com/RustCrypto/hashes/pull/151 +[#148]: https://github.com/RustCrypto/hashes/pull/148 +[#128]: https://github.com/RustCrypto/hashes/pull/128 + +## 0.8.0 (2018-10-02) + +## 0.7.0 (2017-11-15) + +## 0.5.2 (2017-06-13) + +## 0.5.1 (2017-06-13) + +## 0.5.0 (2017-06-12) + +## 0.4.4 (2017-06-02) + +## 0.4.3 (2017-05-09) + +## 0.4.2 (2017-05-02) + +## 0.4.1 (2017-04-18) + +## 0.4.0 (2017-04-06) diff --git a/md5/Cargo.toml b/md5/Cargo.toml index 59cbbca47..4fe651356 100644 --- a/md5/Cargo.toml +++ b/md5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "md-5" -version = "0.9.0-pre" +version = "0.9.0" description = "MD5 hash function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"