Skip to content

Commit 179a501

Browse files
committed
release v0.6.0
1 parent 274dacf commit 179a501

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

.github/workflows/publish.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: taiki-e/install-action@just
13+
- uses: dtolnay/rust-toolchain@nightly
14+
- run: cargo login ${{ secrets.CRATES_IO_API_TOKEN }}
15+
- run: cargo publish -p const-str-proc-macro
16+
- run: cargo publish -p const-str

const-str-proc-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "const-str-proc-macro"
3-
version = "0.5.7"
3+
version = "0.6.0"
44
authors = ["Nugine <[email protected]>"]
55
edition = "2021"
66
description = "compile-time string operations"

const-str/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "const-str"
3-
version = "0.5.7"
3+
version = "0.6.0"
44
authors = ["Nugine <[email protected]>"]
55
edition = "2021"
66
description = "compile-time string operations"
@@ -26,7 +26,7 @@ all-features = true
2626
rustdoc-args = ["--cfg", "docsrs"]
2727

2828
[dependencies.const-str-proc-macro]
29-
version = "0.5.7"
29+
version = "0.6.0"
3030
path = "../const-str-proc-macro"
3131
optional = true
3232

justfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ ci:
3434
just miri
3535

3636
sync-version:
37-
cargo set-version -p const-str-proc-macro '0.5.7'
38-
cargo set-version -p const-str '0.5.7'
37+
cargo set-version -p const-str-proc-macro '0.6.0'
38+
cargo set-version -p const-str '0.6.0'

0 commit comments

Comments
 (0)