diff --git a/Cargo.lock b/Cargo.lock index b6a6eddf..62eafc02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -531,7 +531,7 @@ dependencies = [ [[package]] name = "p384" -version = "0.5.0" +version = "0.6.0" dependencies = [ "ecdsa", "elliptic-curve", diff --git a/k256/CHANGELOG.md b/k256/CHANGELOG.md index 6d32cbf3..86c602e1 100644 --- a/k256/CHANGELOG.md +++ b/k256/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## 0.7.0 (2020-12-16) ### Changed - Bump `elliptic-curve` dependency to v0.8 ([#260]) -- `ecdsa` to v0.10 ([#260]) +- Bump `ecdsa` to v0.10 ([#260]) [#260]: https://github.com/RustCrypto/elliptic-curves/pull/260 diff --git a/p256/CHANGELOG.md b/p256/CHANGELOG.md index fe826df0..adc0ee4a 100644 --- a/p256/CHANGELOG.md +++ b/p256/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## 0.7.0 (2020-12-16) ### Changed - Bump `elliptic-curve` dependency to v0.8 ([#260]) -- `ecdsa` to v0.10 ([#260]) +- Bump `ecdsa` to v0.10 ([#260]) [#260]: https://github.com/RustCrypto/elliptic-curves/pull/260 diff --git a/p384/CHANGELOG.md b/p384/CHANGELOG.md index 08482f64..e258e7fc 100644 --- a/p384/CHANGELOG.md +++ b/p384/CHANGELOG.md @@ -4,6 +4,13 @@ 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.6.0 (2020-12-16) +### Changed +- Bump `elliptic-curve` dependency to v0.8 ([#260]) +- Bump `ecdsa` to v0.10 ([#260]) + +[#260]: https://github.com/RustCrypto/elliptic-curves/pull/260 + ## 0.5.0 (2020-12-06) ### Added - PKCS#8 support ([#243], [#244]) diff --git a/p384/Cargo.toml b/p384/Cargo.toml index f046ccc4..62cf5658 100644 --- a/p384/Cargo.toml +++ b/p384/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "p384" description = "NIST P-384 (secp384r1) elliptic curve" -version = "0.5.0" +version = "0.6.0" # Also update html_root_url in lib.rs when bumping this authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" documentation = "https://docs.rs/elliptic-curve" diff --git a/p384/src/lib.rs b/p384/src/lib.rs index ff3a8ef9..7fae432d 100644 --- a/p384/src/lib.rs +++ b/p384/src/lib.rs @@ -12,7 +12,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/p384/0.5.0" + html_root_url = "https://docs.rs/p384/0.6.0" )] #![forbid(unsafe_code)] #![warn(missing_docs, rust_2018_idioms, unused_qualifications)]