From d48da193ff720bc148d621a535f26e22fb638701 Mon Sep 17 00:00:00 2001 From: Robin Salen Date: Mon, 25 Nov 2024 14:03:30 -0500 Subject: [PATCH] Bump versions --- Cargo.toml | 8 ++++---- evm_arithmetization/Cargo.toml | 2 +- mpt_trie/Cargo.toml | 2 +- smt_trie/Cargo.toml | 2 +- trace_decoder/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 611adfd40..9759d859e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -103,10 +103,10 @@ url = "2.5.2" winnow = "0.6.13" # local dependencies -evm_arithmetization = { path = "evm_arithmetization", version = "0.4.0", default-features = false } -mpt_trie = { path = "mpt_trie", version = "0.4.1" } -smt_trie = { path = "smt_trie", version = "0.1.1" } -trace_decoder = { path = "trace_decoder", version = "0.6.0", default-features = false } +evm_arithmetization = { path = "evm_arithmetization", version = "0.5.0", default-features = false } +mpt_trie = { path = "mpt_trie", version = "0.5.0" } +smt_trie = { path = "smt_trie", version = "0.2.0" } +trace_decoder = { path = "trace_decoder", version = "0.7.0", default-features = false } zk_evm_common = { path = "common", version = "0.1.0" } zk_evm_proc_macro = { path = "proc_macro", version = "0.1.0" } zero = { path = "zero", default-features = false } diff --git a/evm_arithmetization/Cargo.toml b/evm_arithmetization/Cargo.toml index 22a40013f..94bfa66b9 100644 --- a/evm_arithmetization/Cargo.toml +++ b/evm_arithmetization/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "evm_arithmetization" description = "Implementation of STARKs for the Ethereum Virtual Machine" -version = "0.4.0" +version = "0.5.0" authors = [ "Daniel Lubarov ", "William Borgeaud ", diff --git a/mpt_trie/Cargo.toml b/mpt_trie/Cargo.toml index fcdf14663..f72835492 100644 --- a/mpt_trie/Cargo.toml +++ b/mpt_trie/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mpt_trie" description = "Types and utility functions for building/working with partial Ethereum tries." -version = "0.4.1" +version = "0.5.0" authors = ["Polygon Zero "] readme = "README.md" edition.workspace = true diff --git a/smt_trie/Cargo.toml b/smt_trie/Cargo.toml index c1a4cdb9d..b0499235d 100644 --- a/smt_trie/Cargo.toml +++ b/smt_trie/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "smt_trie" description = "Types and utility functions for building/working with Polygon Hermez Sparse Merkle Trees." -version = "0.1.1" +version = "0.2.0" authors = ["William Borgeaud "] readme = "README.md" categories = ["cryptography"] diff --git a/trace_decoder/Cargo.toml b/trace_decoder/Cargo.toml index da9394823..9a9af3570 100644 --- a/trace_decoder/Cargo.toml +++ b/trace_decoder/Cargo.toml @@ -2,7 +2,7 @@ name = "trace_decoder" description = "Ethereum node witness -> Prover input" authors = ["Polygon Zero"] -version = "0.6.0" +version = "0.7.0" edition.workspace = true license.workspace = true repository.workspace = true