From e9708cdf80e35c86f9da5f68c6497a9ca2fe5a0e Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Fri, 20 Dec 2024 11:28:56 +1100 Subject: [PATCH] Release v0.9.0 (#26) --- tree_hash/Cargo.toml | 4 ++-- tree_hash_derive/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tree_hash/Cargo.toml b/tree_hash/Cargo.toml index 75a4434..3671e33 100644 --- a/tree_hash/Cargo.toml +++ b/tree_hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tree_hash" -version = "0.8.0" +version = "0.9.0" edition = "2021" description = "Efficient Merkle-hashing as used in Ethereum consensus" license = "Apache-2.0" @@ -19,7 +19,7 @@ typenum = "1.12.0" [dev-dependencies] rand = "0.8.5" -tree_hash_derive = { path = "../tree_hash_derive", version = "0.8.0" } +tree_hash_derive = { path = "../tree_hash_derive", version = "0.9.0" } ethereum_ssz_derive = "0.8.0" [features] diff --git a/tree_hash_derive/Cargo.toml b/tree_hash_derive/Cargo.toml index c92532b..8975288 100644 --- a/tree_hash_derive/Cargo.toml +++ b/tree_hash_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tree_hash_derive" -version = "0.8.0" +version = "0.9.0" edition = "2021" description = "Procedural derive macros to accompany the tree_hash crate" license = "Apache-2.0"