Skip to content

Commit

Permalink
Prepare for 2.5.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence committed Sep 16, 2021
1 parent 5063d48 commit 3a65884
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Entries are listed in reverse chronological order.

## 2.5.0

* Update to new stable `#![doc = include_str!]`, by @delta1. This fixes
a compile issue caused by the use of the older `#![doc(include(...))]`
syntax. This also bumps the MSRV to 1.54.

## 2.4.1

* Add a note to the README about crate seizures.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ instead of `bool` which are intended to execute in constant-time. The `Choice`
type is a wrapper around a `u8` that holds a `0` or `1`.

```toml
subtle-ng = "2.4"
subtle-ng = "2.5"
```

To switch from the previous `subtle` crate without changing your code,
Expand Down
6 changes: 2 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@

#![no_std]
#![doc = include_str!("../README.md")]
#![cfg_attr(feature = "nightly", deny(missing_docs))]
#![doc(html_root_url = "https://docs.rs/subtle-ng/2.4.1")]
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/subtle-ng/2.5.0")]

//! Note that docs will only build on nightly Rust until
//! [RFC 1990 stabilizes](https://github.com/rust-lang/rust/issues/44732).

#[cfg(feature = "std")]
#[macro_use]
Expand Down

0 comments on commit 3a65884

Please sign in to comment.