Bump version to 1.0.1.

This commit is contained in:
Henry de Valence 2020-08-17 20:06:01 -07:00
parent 917696645b
commit 040adc9b0d
3 changed files with 7 additions and 2 deletions

View File

@ -2,6 +2,11 @@
Entries are listed in reverse chronological order.
# 1.0.1
* Update `sha2` to `0.9` and `curve25519-dalek` to `3.0`.
* Fix missing cofactor multiplication in batch verification (backport from 2.x).
# 1.0.0
* Adds `impl TryFrom<&[u8]>` for all types.

View File

@ -3,7 +3,7 @@ name = "ed25519-zebra"
# Before publishing:
# - update CHANGELOG.md
# - update html_root_url
version = "1.0.0"
version = "1.0.1"
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/1.0.0")]
#![doc(html_root_url = "https://docs.rs/ed25519-zebra/1.0.1")]
#![cfg_attr(feature = "nightly", feature(doc_cfg))]
#![cfg_attr(feature = "nightly", feature(external_doc))]
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]