From 0641f9de5a40865503e188e6795c727853fa74ba Mon Sep 17 00:00:00 2001 From: Robin Salen <30937548+Nashtare@users.noreply.github.com> Date: Fri, 1 Mar 2024 16:15:15 +0900 Subject: [PATCH] Bump all crates to v0.1.1 (#72) * Bump crates to v0.1.1 * Bump starky to v0.2.1 --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- evm_arithmetization/Cargo.toml | 4 ++-- mpt_trie/Cargo.toml | 2 +- proof_gen/Cargo.toml | 6 +++--- trace_decoder/Cargo.toml | 6 +++--- 6 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7169096ac..943f76146 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1] - 2024-03-01 + ### Changed - Add verification for invalid jumps. [#36](https://github.com/0xPolygonZero/zk_evm/pull/36) - Refactor accessed lists as sorted linked lists ([#30](https://github.com/0xPolygonZero/zk_evm/pull/30)) diff --git a/Cargo.toml b/Cargo.toml index c3258a6b7..ef8d457fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ thiserror = "1.0.49" plonky2 = "0.2.0" plonky2_maybe_rayon = "0.2.0" plonky2_util = "0.2.0" -starky = "0.2.0" +starky = "0.2.1" [workspace.package] diff --git a/evm_arithmetization/Cargo.toml b/evm_arithmetization/Cargo.toml index d5a98d1c0..f2a997a48 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.1.0" +version = "0.1.1" authors = ["Daniel Lubarov ", "William Borgeaud "] readme = "README.md" categories = ["cryptography"] @@ -41,7 +41,7 @@ tiny-keccak = "2.0.2" serde_json = { workspace = true } # Local dependencies -mpt_trie = { version = "0.1.0", path = "../mpt_trie" } +mpt_trie = { version = "0.1.1", path = "../mpt_trie" } [target.'cfg(not(target_env = "msvc"))'.dependencies] jemallocator = "0.5.0" diff --git a/mpt_trie/Cargo.toml b/mpt_trie/Cargo.toml index 3951ef625..2bc4d9ab2 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.1.0" +version = "0.1.1" authors = ["Polygon Zero "] readme = "README.md" edition.workspace = true diff --git a/proof_gen/Cargo.toml b/proof_gen/Cargo.toml index 4b980f45f..97469764a 100644 --- a/proof_gen/Cargo.toml +++ b/proof_gen/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "proof_gen" description = "Generates block proofs from zero proof IR." -version = "0.1.0" +version = "0.1.1" authors = ["Polygon Zero "] edition.workspace = true license.workspace = true @@ -17,5 +17,5 @@ plonky2 = { workspace = true } serde = { workspace = true } # Local dependencies -trace_decoder = { version = "0.1.0", path = "../trace_decoder" } -evm_arithmetization = { version = "0.1.0", path = "../evm_arithmetization" } +trace_decoder = { version = "0.1.1", path = "../trace_decoder" } +evm_arithmetization = { version = "0.1.1", path = "../evm_arithmetization" } diff --git a/trace_decoder/Cargo.toml b/trace_decoder/Cargo.toml index 565aa666c..990cceb23 100644 --- a/trace_decoder/Cargo.toml +++ b/trace_decoder/Cargo.toml @@ -2,7 +2,7 @@ name = "trace_decoder" description = "Processes trace payloads into Intermediate Representation (IR) format." authors = ["Polygon Zero "] -version = "0.1.0" +version = "0.1.1" edition.workspace = true license.workspace = true repository.workspace = true @@ -27,8 +27,8 @@ serde_with = "3.4.0" thiserror = { workspace = true } # Local dependencies -mpt_trie = { version = "0.1.0", path = "../mpt_trie" } -evm_arithmetization = { version = "0.1.0", path = "../evm_arithmetization" } +mpt_trie = { version = "0.1.1", path = "../mpt_trie" } +evm_arithmetization = { version = "0.1.1", path = "../evm_arithmetization" } [dev-dependencies] pretty_env_logger = "0.5.0"