Skip to content

Commit fd9cd2d

Browse files
committed
0.10
1 parent b152e6c commit fd9cd2d

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ on:
77
jobs:
88
publish:
99
runs-on: ubuntu-latest
10+
environment: release
11+
permissions:
12+
id-token: write
1013
steps:
11-
- uses: actions/checkout@v5
12-
- uses: katyo/publish-crates@v2
13-
with:
14-
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
14+
- uses: actions/checkout@v6
15+
- uses: rust-lang/crates-io-auth-action@v1
16+
id: auth
17+
- run: cargo publish
18+
env:
19+
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "byteview"
33
description = "Thin, immutable zero-copy slice type"
44
license = "MIT OR Apache-2.0"
5-
version = "0.9.1"
5+
version = "0.10.0"
66
edition = "2021"
77
rust-version = "1.81"
88
readme = "README.md"

0 commit comments

Comments
 (0)