From fa1f7d0dae11ff7a6ebda5fa370d0b37d3a12132 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 22 Jan 2022 16:00:08 +0900 Subject: [PATCH] Release 1.7.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d63826f..9df1a09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 1.7.0 + +- Add `char()` and `Rng::char()` (#25) + # Version 1.6.0 - Implement `PartialEq` and `Eq` for `Rng` (#23) diff --git a/Cargo.toml b/Cargo.toml index dbd836d..aa5192f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,14 +3,13 @@ name = "fastrand" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.6.0" +version = "1.7.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.34" description = "A simple and fast random number generator" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/fastrand" -homepage = "https://github.com/smol-rs/fastrand" keywords = ["simple", "fast", "rand", "random", "wyrand"] categories = ["algorithms"] exclude = ["/.*"] @@ -25,5 +24,5 @@ getrandom = { version = "0.2", features = ["js"] } [dev-dependencies] rand = "0.8" -wyhash = "0.5.0" +wyhash = "0.5" getrandom = "0.2"