diff --git a/elliptic-curve/CHANGELOG.md b/elliptic-curve/CHANGELOG.md index 379ea79a6..838d73b0c 100644 --- a/elliptic-curve/CHANGELOG.md +++ b/elliptic-curve/CHANGELOG.md @@ -4,6 +4,12 @@ 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.11.3 (2021-12-03) +### Added +- `ReduceNonZero` trait ([#827]) + +[#827]: https://github.com/RustCrypto/traits/pull/827 + ## 0.11.2 (2021-12-03) ### Changed - Bump `pem-rfc7468` dependency to v0.3 ([#825]) diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index b156ca329..8a4d81fc1 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elliptic-curve" -version = "0.11.2" # Also update html_root_url in lib.rs when bumping this +version = "0.11.3" # Also update html_root_url in lib.rs when bumping this description = """ General purpose Elliptic Curve Cryptography (ECC) support, including types and traits for representing various elliptic curve forms, scalars, points, diff --git a/elliptic-curve/src/lib.rs b/elliptic-curve/src/lib.rs index 2da9aeb0f..cbc049764 100644 --- a/elliptic-curve/src/lib.rs +++ b/elliptic-curve/src/lib.rs @@ -35,7 +35,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg", - html_root_url = "https://docs.rs/elliptic-curve/0.11.2" + html_root_url = "https://docs.rs/elliptic-curve/0.11.3" )] #[cfg(feature = "alloc")]