diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c3dbe8..fe66051 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ Entries are listed in reverse chronological order. +## 0.1.1 + +* Explicitly document the consensus checks performed by + `impl TryFrom> for PublicKey`. +* Add a test that small-order public keys are rejected. +* Add `html_root_url` to ensure cross-rendering docs works correctly (thanks + @QuietMisdreavus). + ## 0.1.0 -Initial release. +* Initial release. diff --git a/Cargo.toml b/Cargo.toml index 4aed6f6..84ee111 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,11 @@ [package] name = "redjubjub" edition = "2018" -version = "0.1.0" +# When releasing to crates.io: +# - Update html_root_url +# - Update CHANGELOG.md +# - Create git tag. +version = "0.1.1" authors = ["Henry de Valence "] readme = "README.md" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index d477a30..fdbe171 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,4 @@ +#![doc(html_root_url = "https://docs.rs/redjubjub/0.1.1")] #![cfg_attr(feature = "nightly", feature(external_doc))] #![cfg_attr(feature = "nightly", doc(include = "../README.md"))] #![deny(missing_docs)]