mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-06 20:41:14 +00:00
Merge branch 'release/1.0.1'
This commit is contained in:
commit
d438d486fd
3 changed files with 7 additions and 3 deletions
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
Entries are listed in reverse chronological order.
|
Entries are listed in reverse chronological order.
|
||||||
|
|
||||||
|
## 1.0.1
|
||||||
|
|
||||||
|
* Update underlying `curve25519_dalek` library to `3.0`.
|
||||||
|
|
||||||
## 1.0.0
|
## 1.0.0
|
||||||
|
|
||||||
* Widen generic bound on `EphemeralSecret::new` and `StaticSecret::new` to
|
* Widen generic bound on `EphemeralSecret::new` and `StaticSecret::new` to
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ edition = "2018"
|
||||||
# - update version in README.md
|
# - update version in README.md
|
||||||
# - update html_root_url
|
# - update html_root_url
|
||||||
# - update CHANGELOG
|
# - update CHANGELOG
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = [
|
authors = [
|
||||||
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||||
"DebugSteven <debugsteven@gmail.com>",
|
"DebugSteven <debugsteven@gmail.com>",
|
||||||
|
|
@ -33,7 +33,7 @@ travis-ci = { repository = "dalek-cryptography/x25519-dalek", branch = "master"}
|
||||||
features = ["nightly"]
|
features = ["nightly"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
curve25519-dalek = { version = "2", default-features = false }
|
curve25519-dalek = { version = "3", default-features = false }
|
||||||
rand_core = { version = "0.5", default-features = false }
|
rand_core = { version = "0.5", default-features = false }
|
||||||
# `serde` is renamed to `our_serde` in order to avoid a name collision between
|
# `serde` is renamed to `our_serde` in order to avoid a name collision between
|
||||||
# importing the serde dependency and enabling the curve25519-dalek/serde feature
|
# importing the serde dependency and enabling the curve25519-dalek/serde feature
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
#![cfg_attr(feature = "nightly", deny(missing_docs))]
|
#![cfg_attr(feature = "nightly", deny(missing_docs))]
|
||||||
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
|
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
|
||||||
#![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")]
|
#![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")]
|
||||||
#![doc(html_root_url = "https://docs.rs/x25519-dalek/1.0.0")]
|
#![doc(html_root_url = "https://docs.rs/x25519-dalek/1.0.1")]
|
||||||
|
|
||||||
//! Note that docs will only build on nightly Rust until
|
//! Note that docs will only build on nightly Rust until
|
||||||
//! `feature(external_doc)` is stabilized.
|
//! `feature(external_doc)` is stabilized.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue