Merge branch 'main' into develop

This commit is contained in:
Isis Lovecruft 2021-04-14 04:47:45 +00:00
commit 9da1401908
No known key found for this signature in database
GPG key ID: AB41313533E8E812
3 changed files with 6 additions and 2 deletions

View file

@ -2,6 +2,10 @@
Entries are listed in reverse chronological order.
## 1.1.1
* Fix a typo in the README.
## 1.1.0
* Add impls of `PartialEq`, `Eq`, and `Hash` for `PublicKey` (by @jack-michaud)

View file

@ -5,7 +5,7 @@ edition = "2018"
# - update version in README.md
# - update html_root_url
# - update CHANGELOG
version = "1.1.0"
version = "1.1.1"
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>",
"DebugSteven <debugsteven@gmail.com>",

View file

@ -20,7 +20,7 @@
#![cfg_attr(feature = "nightly", deny(missing_docs))]
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
#![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")]
#![doc(html_root_url = "https://docs.rs/x25519-dalek/1.1.0")]
#![doc(html_root_url = "https://docs.rs/x25519-dalek/1.1.1")]
//! Note that docs will only build on nightly Rust until
//! `feature(external_doc)` is stabilized.