diff --git a/Cargo.lock b/Cargo.lock index 28f4311..6e03a61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,7 +159,7 @@ dependencies = [ [[package]] name = "crypto_kx" -version = "0.1.0-pre" +version = "0.1.0" dependencies = [ "blake2", "getrandom 0.2.7", diff --git a/crypto_kx/CHANGELOG.md b/crypto_kx/CHANGELOG.md index 9e4940c..11336e6 100644 --- a/crypto_kx/CHANGELOG.md +++ b/crypto_kx/CHANGELOG.md @@ -5,5 +5,17 @@ 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.1.0 (2022-08-13) +### Changed +- Bump `blake2` to v0.10 ([#22]) +- Upgrade to Rust 2021 edition; MSRV 1.56 ([#42]) +- Use `serdect` crate ([#59]) +- Select `x25519-dalek` backend automatically ([#60]) + +[#22]: https://github.com/RustCrypto/nacl-compat/pull/22 +[#42]: https://github.com/RustCrypto/nacl-compat/pull/42 +[#59]: https://github.com/RustCrypto/nacl-compat/pull/59 +[#60]: https://github.com/RustCrypto/nacl-compat/pull/60 + ## 0.0.1 (2021-09-13) - Initial release diff --git a/crypto_kx/Cargo.toml b/crypto_kx/Cargo.toml index 5d4c595..95d4d25 100644 --- a/crypto_kx/Cargo.toml +++ b/crypto_kx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crypto_kx" -version = "0.1.0-pre" +version = "0.1.0" description = "Pure Rust implementation of libsodium's crypto_kx using BLAKE2" authors = ["C4DT", "RustCrypto Developers"] license = "Apache-2.0 OR MIT"