File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Publish to crates.io and create GitHub release
2+ on :
3+ push :
4+ tags : ['[0-9].[0-9].*', '[0-9].[1-9][0-9].*']
5+ jobs :
6+ # Source: https://crates.io/docs/trusted-publishing
7+ publish :
8+ runs-on : ubuntu-latest
9+ environment : release
10+ permissions :
11+ id-token : write
12+ steps :
13+ - uses : actions/checkout@v6
14+ - uses : rust-lang/crates-io-auth-action@v1
15+ id : auth
16+ - run : cargo publish
17+ env :
18+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
88
99You may also find the [ Upgrade Guide] ( https://rust-random.github.io/book/update.html ) useful.
1010
11+ ## [ 0.8.6] - 2026-04-14
12+ This release back-ports a fix from v0.10. See also [ #1763 ] .
13+
14+ ### Changes
15+ - Deprecate feature ` log ` (#1764 )
16+
17+ [ #1763 ] : https://github.com/rust-random/rand/pull/1763
18+
1119## [ 0.8.5] - 2021-08-20
1220### Fixes
1321- Fix build on non-32/64-bit architectures (#1144 )
Original file line number Diff line number Diff line change 11[package ]
22name = " rand"
3- version = " 0.8.5 "
3+ version = " 0.8.6 "
44authors = [" The Rand Project Developers" , " The Rust Project Developers" ]
55license = " MIT OR Apache-2.0"
66readme = " README.md"
You can’t perform that action at this time.
0 commit comments