Skip to content

Commit 1213ae8

Browse files
committed
Merge branch 'main' into develop
2 parents 90af5f2 + b4b070c commit 1213ae8

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
Entries are listed in reverse chronological order.
44

5+
## 2.4.1
6+
7+
* Fix a bug in how the README was included in the documentation builds
8+
which caused nightly builds to break.
9+
510
## 2.4.0
611

712
* Add new `ConstantTimeGreater` and `ConstantTimeLess` traits, as well

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "subtle"
55
# - update html_root_url
66
# - update README if necessary by semver
77
# - if any updates were made to the README, also update the module documentation in src/lib.rs
8-
version = "2.4.0"
8+
version = "2.4.1"
99
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
1010
"Henry de Valence <hdevalence@hdevalence.ca>"]
1111
readme = "README.md"

src/lib.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#![no_std]
1212
#![deny(missing_docs)]
1313
#![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")]
14-
#![doc(html_root_url = "https://docs.rs/subtle/2.4.0")]
14+
#![doc(html_root_url = "https://docs.rs/subtle/2.4.1")]
1515

1616
//! # subtle [![](https://img.shields.io/crates/v/subtle.svg)](https://crates.io/crates/subtle) [![](https://img.shields.io/badge/dynamic/json.svg?label=docs&uri=https%3A%2F%2Fcrates.io%2Fapi%2Fv1%2Fcrates%2Fsubtle%2Fversions&query=%24.versions%5B0%5D.num&colorB=4F74A6)](https://doc.dalek.rs/subtle) [![](https://travis-ci.org/dalek-cryptography/subtle.svg?branch=master)](https://travis-ci.org/dalek-cryptography/subtle)
1717
//!
@@ -87,9 +87,6 @@
8787
#[macro_use]
8888
extern crate std;
8989

90-
#[cfg(test)]
91-
extern crate rand;
92-
9390
use core::ops::{BitAnd, BitAndAssign, BitOr, BitOrAssign, BitXor, BitXorAssign, Neg, Not};
9491
use core::option::Option;
9592

0 commit comments

Comments
 (0)