From 12d828cccc0e1f4869769d02321e708a5c26ded1 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Fri, 23 Aug 2024 13:28:07 +1000 Subject: [PATCH] Release v0.8.0 (#21) --- 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 aa0e306..d7d9165 100644 --- a/tree_hash/Cargo.toml +++ b/tree_hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tree_hash" -version = "0.7.0" +version = "0.8.0" edition = "2021" description = "Efficient Merkle-hashing as used in Ethereum consensus" license = "Apache-2.0" @@ -17,7 +17,7 @@ smallvec = "1.6.1" [dev-dependencies] rand = "0.8.5" -tree_hash_derive = { path = "../tree_hash_derive", version = "0.7.0" } +tree_hash_derive = { path = "../tree_hash_derive", version = "0.8.0" } ethereum_ssz = "0.7" ethereum_ssz_derive = "0.7" diff --git a/tree_hash_derive/Cargo.toml b/tree_hash_derive/Cargo.toml index bfe6508..c92532b 100644 --- a/tree_hash_derive/Cargo.toml +++ b/tree_hash_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tree_hash_derive" -version = "0.7.0" +version = "0.8.0" edition = "2021" description = "Procedural derive macros to accompany the tree_hash crate" license = "Apache-2.0"