Skip to content

Commit 784208e

Browse files
authored
Release v0.8.2 (#42)
* Bump versions to 0.8.2 * Add delay before publishing main crate
1 parent 71333bf commit 784208e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,10 @@ jobs:
2222
- uses: actions/checkout@v3
2323
- name: Publish derive crate
2424
run: cargo publish -p ethereum_ssz_derive
25+
# `ethereum_ssz` depends on `ethereum_ssz_derive` to publish, so sleep a
26+
# bit to give crates.io some time to update.
27+
- name: Sleep for 3 minutes
28+
run: sleep 180s
29+
shell: bash
2530
- name: Publish main crate
2631
run: cargo publish -p ethereum_ssz

ssz/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethereum_ssz"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
edition = "2021"
55
description = "SimpleSerialize (SSZ) as used in Ethereum"
66
license = "Apache-2.0"
@@ -15,7 +15,7 @@ name = "ssz"
1515

1616
[dev-dependencies]
1717
alloy-primitives = { version = "0.8.0", features = ["getrandom"] }
18-
ethereum_ssz_derive = { version = "0.8.1", path = "../ssz_derive" }
18+
ethereum_ssz_derive = { version = "0.8.2", path = "../ssz_derive" }
1919

2020
[dependencies]
2121
alloy-primitives = "0.8.0"

ssz_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethereum_ssz_derive"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
edition = "2021"
55
description = "Procedural derive macros to accompany the ethereum_ssz crate"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)