Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
Bump all crates to v0.1.1 (0xPolygonZero#72)
Browse files Browse the repository at this point in the history
* Bump crates to v0.1.1

* Bump starky to v0.2.1
  • Loading branch information
Nashtare authored Mar 1, 2024
1 parent 321b9bd commit 0641f9d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions evm_arithmetization/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>", "William Borgeaud <[email protected]>"]
readme = "README.md"
categories = ["cryptography"]
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion mpt_trie/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
edition.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions proof_gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
edition.workspace = true
license.workspace = true
Expand All @@ -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" }
6 changes: 3 additions & 3 deletions trace_decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "trace_decoder"
description = "Processes trace payloads into Intermediate Representation (IR) format."
authors = ["Polygon Zero <[email protected]>"]
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -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"

0 comments on commit 0641f9d

Please sign in to comment.