From 9999133318392cd7afc38681094d3ad8c1a282fd Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Sun, 27 Dec 2020 09:58:10 -0800 Subject: [PATCH] Prepare for v4.0.0 release --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9141ea475..5752a2468 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_mt" -version = "3.0.0" # remember to set `html_root_url` in `src/lib.rs`. +version = "4.0.0" # remember to set `html_root_url` in `src/lib.rs`. authors = ["David Creswick ", "Ryan Lopopolo "] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/README.md b/README.md index 4a2abfbcb..f09a86510 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -rand_mt = "3" +rand_mt = "4" ``` Then create a RNG like: diff --git a/src/lib.rs b/src/lib.rs index bcac932f5..4547600f3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ //! [`rand_core`]: https://crates.io/crates/rand_core //! [`std::error::error`]: https://doc.rust-lang.org/std/error/trait.Error.html -#![doc(html_root_url = "https://docs.rs/rand_mt/3.0.0")] +#![doc(html_root_url = "https://docs.rs/rand_mt/4.0.0")] #![cfg_attr(not(feature = "std"), no_std)] // Ensure code blocks in README.md compile