File tree 4 files changed +21
-5
lines changed
4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " const-str-proc-macro"
3
- version = " 0.5.7 "
3
+ version = " 0.6.0 "
4
4
authors = [
" Nugine <[email protected] >" ]
5
5
edition = " 2021"
6
6
description = " compile-time string operations"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " const-str"
3
- version = " 0.5.7 "
3
+ version = " 0.6.0 "
4
4
authors = [
" Nugine <[email protected] >" ]
5
5
edition = " 2021"
6
6
description = " compile-time string operations"
@@ -26,7 +26,7 @@ all-features = true
26
26
rustdoc-args = [" --cfg" , " docsrs" ]
27
27
28
28
[dependencies .const-str-proc-macro ]
29
- version = " 0.5.7 "
29
+ version = " 0.6.0 "
30
30
path = " ../const-str-proc-macro"
31
31
optional = true
32
32
Original file line number Diff line number Diff line change 34
34
just miri
35
35
36
36
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 '
You can’t perform that action at this time.
0 commit comments