release: update CHANGELOG and version.

This commit is contained in:
Henry de Valence 2020-07-09 10:30:01 -07:00
parent b521ffb17f
commit eb5714779c
3 changed files with 9 additions and 2 deletions

View File

@ -2,6 +2,13 @@
Entries are listed in reverse chronological order.
## 0.2.0
* Change terminology to "signing key" and "verification key" from "secret key"
and "public key".
* Adds a batch verification implementation which can process both binding and
spend authorization signatures in the same batch.
## 0.1.1
* Explicitly document the consensus checks performed by

View File

@ -5,7 +5,7 @@ edition = "2018"
# - Update html_root_url
# - Update CHANGELOG.md
# - Create git tag.
version = "0.1.1"
version = "0.2.0"
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md"
license = "MIT OR Apache-2.0"

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/redjubjub/0.1.1")]
#![doc(html_root_url = "https://docs.rs/redjubjub/0.2.0")]
#![cfg_attr(feature = "nightly", feature(external_doc))]
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
#![deny(missing_docs)]