-
-
Notifications
You must be signed in to change notification settings - Fork 38
Add rand_pcg
#103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add rand_pcg
#103
Conversation
| The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
| and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
|
||
| ## [0.10.1] - 2026-02-09 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note the bumped version. I think it's worth to release v0.10.1 with the updated repository field to avoid potential confusion.
@dhardy
You will need to publish it manually since Trusted Publishing is not adopted for this repo and you have removed me from the maintainters team.
|
What changes are there from the |
Output of diff rand/rand_pcg/Cargo.toml rngs/rand_pcg/Cargo.toml
3c3
< version = "0.10.0"
---
> version = "0.10.1"
7c7
< repository = "https://github.com/rust-random/rand"
---
> repository = "https://github.com/rust-random/rngs"
10,12c10
< description = """
< Selected PCG random number generators
< """
---
> description = "Selected PCG random number generators"
26c24
< rand_core = { version = "0.10.0" }
---
> rand_core = "0.10"
diff rand/rand_pcg/CHANGELOG.md rngs/rand_pcg/CHANGELOG.md
6a7,13
> ## [0.10.1] - 2026-02-09
> ### Changed
> - The crate is moved from [`rust-random/rand`] to [`rust-random/rngs`].
>
> [`rust-random/rand`]: https://github.com/rust-random/rand
> [`rust-random/rngs`]: https://github.com/rust-random/rngs
> |
dhardy
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that's fine. Thanks.
Sibling rngs PR: rust-random/rngs#103
The crate is moved from
rust-random/randwithout any code changes.Sibling
randPR: rust-random/rand#1740