Bump version and update changelog.
This commit is contained in:
parent
416ec245cf
commit
aa023b428e
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -2,6 +2,14 @@
|
||||||
|
|
||||||
Entries are listed in reverse chronological order.
|
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
|
## 0.1.0
|
||||||
|
|
||||||
Initial release.
|
* Initial release.
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "redjubjub"
|
name = "redjubjub"
|
||||||
edition = "2018"
|
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>"]
|
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
|
@ -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", feature(external_doc))]
|
||||||
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
|
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
Loading…
Reference in New Issue