Skip to content

Commit

Permalink
Version 0.5.2 (sigp#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Mar 13, 2023
1 parent af3a438 commit 898d478
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions bump-version.sh
Expand Up @@ -24,5 +24,8 @@ sed -i.bak -e "s/^version = \"$from\"/version = \"$to\"/" "${crate_name}_derive/
# update main crate's dev dependency on derive crate (if any)
sed -i.bak -e "s/\(${crate_name}_derive.*version\) = \"$from\"/\1 = \"$to\"/" "$crate_name/Cargo.toml"

# update derive crate's dev dependency on main crate (if any)
sed -i.bak -e "s/\(${crate_name}.*version\) = \"$from\"/\1 = \"$to\"/" "${crate_name}_derive/Cargo.toml"

rm "$crate_name/Cargo.toml.bak"
rm "${crate_name}_derive/Cargo.toml.bak"
4 changes: 2 additions & 2 deletions ssz/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ethereum_ssz"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
description = "SimpleSerialize (SSZ) as used in Ethereum"
license = "Apache-2.0"
Expand All @@ -14,7 +14,7 @@ categories = ["cryptography::cryptocurrencies"]
name = "ssz"

[dev-dependencies]
ethereum_ssz_derive = { version = "0.5.1", path = "../ssz_derive" }
ethereum_ssz_derive = { version = "0.5.2", path = "../ssz_derive" }

[dependencies]
ethereum-types = "0.14.1"
Expand Down
4 changes: 2 additions & 2 deletions ssz_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ethereum_ssz_derive"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
description = "Procedural derive macros to accompany the ethereum_ssz crate"
license = "Apache-2.0"
Expand All @@ -21,4 +21,4 @@ quote = "1.0.7"
darling = "0.13.0"

[dev-dependencies]
ethereum_ssz = { version = "0.5.1", path = "../ssz" }
ethereum_ssz = { version = "0.5.2", path = "../ssz" }

0 comments on commit 898d478

Please sign in to comment.