Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.8.2 #42

Merged
merged 2 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,10 @@ jobs:
- uses: actions/checkout@v3
- name: Publish derive crate
run: cargo publish -p ethereum_ssz_derive
# `ethereum_ssz` depends on `ethereum_ssz_derive` to publish, so sleep a
# bit to give crates.io some time to update.
- name: Sleep for 3 minutes
run: sleep 180s
shell: bash
- name: Publish main crate
run: cargo publish -p ethereum_ssz
4 changes: 2 additions & 2 deletions ssz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethereum_ssz"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
description = "SimpleSerialize (SSZ) as used in Ethereum"
license = "Apache-2.0"
Expand All @@ -15,7 +15,7 @@ name = "ssz"

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

[dependencies]
alloy-primitives = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion ssz_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethereum_ssz_derive"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
description = "Procedural derive macros to accompany the ethereum_ssz crate"
license = "Apache-2.0"
Expand Down
Loading