Release 1.7.0

This commit is contained in:
Taiki Endo 2022-01-22 16:00:08 +09:00
parent b8874eb81a
commit fa1f7d0dae
2 changed files with 6 additions and 3 deletions

View File

@ -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)

View File

@ -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 <stjepang@gmail.com>"]
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"