Skip to content

Commit f6d83a4

Browse files
dhardynwalfield
authored andcommitted
Prepare v0.8.6
1 parent 0ce116e commit f6d83a4

4 files changed

Lines changed: 27 additions & 32 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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 }}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
88

99
You 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)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand"
3-
version = "0.8.5"
3+
version = "0.8.6"
44
authors = ["The Rand Project Developers", "The Rust Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

0 commit comments

Comments
 (0)