diff --git a/signature/CHANGES.md b/signature/CHANGES.md index 6a7a45f5..0e98529b 100644 --- a/signature/CHANGES.md +++ b/signature/CHANGES.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). +## 1.0.0-pre.3 (2020-03-08) +### Fixed +- docs.rs rendering ([#76]) + +[#76]: https://github.com/RustCrypto/traits/pull/76 + ## 1.0.0-pre.2 (2020-03-08) ### Added - `RandomizedSigner` trait ([#73]) diff --git a/signature/Cargo.toml b/signature/Cargo.toml index 24260933..c58e4f7b 100644 --- a/signature/Cargo.toml +++ b/signature/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "signature" description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)" -version = "1.0.0-pre.2" # Also update html_root_url in lib.rs when bumping this +version = "1.0.0-pre.3" # Also update html_root_url in lib.rs when bumping this authors = ["RustCrypto Developers"] license = "Apache-2.0 OR MIT" documentation = "https://docs.rs/signature" diff --git a/signature/src/lib.rs b/signature/src/lib.rs index 83d98729..01a73782 100644 --- a/signature/src/lib.rs +++ b/signature/src/lib.rs @@ -147,7 +147,7 @@ #![no_std] #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png", - html_root_url = "https://docs.rs/signature/1.0.0-pre.2" + html_root_url = "https://docs.rs/signature/1.0.0-pre.3" )] #![cfg_attr(docsrs, feature(doc_cfg))] #![forbid(unsafe_code)]