File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 steps :
1515 - name : Fetch latest code
1616 uses : actions/checkout@v3
17- - name : Install Rust nightly toolchain
18- uses : actions-rs/toolchain@v1
19- with :
20- toolchain : nightly
21- default : true
2217 - name : Cargo test
2318 uses : actions-rs/cargo@v1
2419 with :
2520 command : test
26- args : --all --all-features
21+ args : --workspace --all-features --all-targets --locked
Original file line number Diff line number Diff line change 1+ name : Release
2+ on :
3+ push :
4+ tags :
5+ - " v[0-9]+.[0-9]+.[0-9]+"
6+ - " v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+"
7+
8+ env :
9+ CARGO_TERM_COLOR : always
10+
11+ jobs :
12+ publish-on-crates-io :
13+ name : Publish on crates.io
14+ runs-on : ubuntu-latest
15+ steps :
16+ - name : Fetch latest code
17+ uses : actions/checkout@v3
18+ - name : Login
19+ run : cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
20+ - name : Publish
21+ uses : actions-rs/cargo@v1
22+ with :
23+ command : publish
24+ args : publish --locked
Original file line number Diff line number Diff line change 1+ ## v4.2.0
2+ - Bump dependencies.
3+ - Update CI.
4+ - Update license.
5+
16## v4.1.0
27- Mark `hex_bytes2hex_str_unchecked` as unsafe.
38
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ license = "Apache-2.0/GPL-3.0"
1818name = " array-bytes"
1919readme = " README.md"
2020repository = " https://github.com/hack-ink/array-bytes"
21- version = " 4.1 .0"
21+ version = " 4.2 .0"
2222
2323[badges ]
2424maintenance = { status = " actively-developed" }
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ edition = "2021"
44metadata = { cargo-fuzz = true }
55name = " array-bytes-fuzz"
66publish = false
7- version = " 4.1 .0"
7+ version = " 4.2 .0"
88
99[dependencies ]
10- array-bytes = { version = " 4.1 " , path = " .." }
10+ array-bytes = { version = " 4.2 " , path = " .." }
1111libfuzzer-sys = { version = " 0.4" }
1212
1313[workspace ]
You can’t perform that action at this time.
0 commit comments