Skip to content

Commit 5b007aa

Browse files
committed
v0.1.0
Signed-off-by: John Nunley <[email protected]>
1 parent fcdefe1 commit 5b007aa

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
- uses: taiki-e/create-gh-release-action@v1
1818
with:
1919
changelog: CHANGELOG.md
20-
branch: master
20+
branch: main
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Version 0.1.0
2+
3+
- Initial release
4+

Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
[package]
22
name = "fastrand-contrib"
3+
# Make sure to modify CHANGELOG.md before releasing a new version.
34
version = "0.1.0"
5+
authors = ["John Nunley <[email protected]>", "Petr Nevyhoštěný <[email protected]>"]
46
edition = "2018"
57
rust-version = "1.43.0"
8+
description = "Extension functionality for fastrand"
9+
license = "Apache-2.0 OR MIT"
10+
repository = "https://github.com/smol-rs/fastrand-contrib"
11+
keywords = ["simple", "fast", "rand", "random", "wyrand"]
12+
categories = ["algorithm"]
13+
exclude = ["/.*"]
614

715
[dependencies]
816
fastrand = { version = "2.0.0", default-features = false }

0 commit comments

Comments
 (0)