Merge branch 'release/1.1'

This commit is contained in:
Henry de Valence 2020-08-31 12:58:49 -07:00
commit 0985e1babf
5 changed files with 8 additions and 4 deletions

View file

@ -2,6 +2,10 @@
Entries are listed in reverse chronological order. Entries are listed in reverse chronological order.
## 1.1.0
* Add impls of `PartialEq`, `Eq`, and `Hash` for `PublicKey` (by @jack-michaud)
## 1.0.1 ## 1.0.1
* Update underlying `curve25519_dalek` library to `3.0`. * Update underlying `curve25519_dalek` library to `3.0`.

View file

@ -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.1" version = "1.1.0"
authors = [ authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>", "Isis Lovecruft <isis@patternsinthevoid.net>",
"DebugSteven <debugsteven@gmail.com>", "DebugSteven <debugsteven@gmail.com>",

View file

@ -102,7 +102,7 @@ To install, add the following to your project's `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
x25519-dalek = "1" x25519-dalek = "1.1"
``` ```
# Documentation # Documentation

View file

@ -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.1")] #![doc(html_root_url = "https://docs.rs/x25519-dalek/1.1.0")]
//! 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.

View file

@ -29,7 +29,7 @@ use zeroize::Zeroize;
feature = "serde", feature = "serde",
derive(our_serde::Serialize, our_serde::Deserialize) derive(our_serde::Serialize, our_serde::Deserialize)
)] )]
#[derive(Copy, Clone, Debug)] #[derive(PartialEq, Eq, Hash, Copy, Clone, Debug)]
pub struct PublicKey(pub(crate) MontgomeryPoint); pub struct PublicKey(pub(crate) MontgomeryPoint);
impl From<[u8; 32]> for PublicKey { impl From<[u8; 32]> for PublicKey {