Skip to content

Commit

Permalink
Update repository, add html_root_url, update dev-dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence committed Jan 14, 2021
1 parent 226b779 commit 1dda9dd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.1

* Update repository, add `html_root_url`, update dev-dependencies.

## 2.0.0

* Update `rand_core` to `0.5`. Because traits from `rand_core` are part of the
Expand Down
10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
[package]
name = "merlin"
version = "2.0.0"
# Before incrementing:
# - update CHANGELOG
# - update html_root_url
# - update README if required by semver
version = "2.0.1"
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
edition = "2018"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dalek-cryptography/merlin"
repository = "https://github.com/zkcrypto/merlin"
homepage = "https://docs.rs/merlin"
documentation = "https://docs.rs/merlin"
categories = ["cryptography"]
Expand All @@ -26,7 +30,7 @@ hex = {version = "0.3", default-features = false, optional = true}

[dev-dependencies]
strobe-rs = "0.5"
curve25519-dalek = "2"
curve25519-dalek = { version = "3", package = "curve25519-dalek-ng" }
rand_chacha = "0.2"

[features]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "nightly", feature(external_doc))]
#![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/merlin/2.0.1")]
// put this after the #![doc(..)] so it appears as a footer:
//! Note that docs will only build on nightly Rust until
//! [RFC 1990 stabilizes](https://github.com/rust-lang/rust/issues/44732).
Expand Down

0 comments on commit 1dda9dd

Please sign in to comment.