Bump version to 0.4.0
This commit is contained in:
parent
c0091419c5
commit
a2c6a6192b
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"))]
|
||||
|
|
Loading…
Reference in New Issue