File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 22
22
- uses : actions/checkout@v3
23
23
- name : Publish derive crate
24
24
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
25
30
- name : Publish main crate
26
31
run : cargo publish -p ethereum_ssz
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ethereum_ssz"
3
- version = " 0.8.1 "
3
+ version = " 0.8.2 "
4
4
edition = " 2021"
5
5
description = " SimpleSerialize (SSZ) as used in Ethereum"
6
6
license = " Apache-2.0"
@@ -15,7 +15,7 @@ name = "ssz"
15
15
16
16
[dev-dependencies ]
17
17
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" }
19
19
20
20
[dependencies ]
21
21
alloy-primitives = " 0.8.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ethereum_ssz_derive"
3
- version = " 0.8.1 "
3
+ version = " 0.8.2 "
4
4
edition = " 2021"
5
5
description = " Procedural derive macros to accompany the ethereum_ssz crate"
6
6
license = " Apache-2.0"
You can’t perform that action at this time.
0 commit comments