Bump version to 0.4.0

This commit is contained in:
Henry de Valence 2020-06-16 13:46:29 -07:00
parent c0091419c5
commit a2c6a6192b
3 changed files with 7 additions and 2 deletions

View File

@ -2,6 +2,11 @@
Entries are listed in reverse chronological order.
# 0.4.0
* The sync batch verification api is changed to remove a dependence on the
message lifetime that made it difficult to use in async contexts.
# 0.3.0
* Change terminology from secret and public keys to signing and verification

View File

@ -3,7 +3,7 @@ name = "ed25519-zebra"
# Before publishing:
# - update CHANGELOG.md
# - update html_root_url
version = "0.3.0"
version = "0.4.0"
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
license = "MIT OR Apache-2.0"
edition = "2018"

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/ed25519-zebra/0.3.0")]
#![doc(html_root_url = "https://docs.rs/ed25519-zebra/0.4.0")]
#![cfg_attr(feature = "nightly", feature(doc_cfg))]
#![cfg_attr(feature = "nightly", feature(external_doc))]
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]