Bump version and update changelog.

This commit is contained in:
Henry de Valence 2020-01-17 10:23:57 -08:00
parent 416ec245cf
commit aa023b428e
3 changed files with 15 additions and 2 deletions

View File

@ -2,6 +2,14 @@
Entries are listed in reverse chronological order.
## 0.1.1
* Explicitly document the consensus checks performed by
`impl TryFrom<PublicKeyBytes<T>> for PublicKey<T>`.
* 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.

View File

@ -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 <hdevalence@hdevalence.ca>"]
readme = "README.md"
license = "MIT OR Apache-2.0"

View File

@ -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)]