Skip to content

Commit

Permalink
bump v26 revm v3.5.0 (#765)
Browse files Browse the repository at this point in the history
* bump v25 revm v3.5.0
  • Loading branch information
rakita authored Oct 3, 2023
1 parent b0167f1 commit 23cbac4
Show file tree
Hide file tree
Showing 11 changed files with 63 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag.

# v26 tag
date 02.10.2023

Migration to alloy primitive types.

* revm: v3.5.0
* revm-precompile: v2.2.0
* revm-primitives: v1.3.0
* revm-interpreter: v1.3.0

# v25 tag
date: 28.09.2023

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bins/revme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ hash-db = "0.15"
hashbrown = "0.14"
indicatif = "0.17"
plain_hasher = "0.2"
revm = { path = "../../crates/revm", version = "3.4.0", default-features = false, features = [
revm = { path = "../../crates/revm", version = "3.5.0", default-features = false, features = [
"ethersdb",
"std",
"serde",
Expand Down
10 changes: 10 additions & 0 deletions crates/interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@

# v1.3.0
date 02.10.2023

Migration to alloy primitive types.

Full git log:
* af4146a - feat: Alloy primitives (#724) (15 hours ago) <evalir>
* 1f86e45 - chore(deps): bump proptest from 1.2.0 to 1.3.1 (#763) (22 hours ago) <dependabot[bot]>

# v1.2.0
date: 28.09.2023

Expand Down
4 changes: 2 additions & 2 deletions crates/interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"]
license = "MIT"
name = "revm-interpreter"
repository = "https://github.com/bluealloy/revm"
version = "1.2.0"
version = "1.3.0"
readme = "../../README.md"

[dependencies]
revm-primitives = { path = "../primitives", version = "1.2.0", default-features = false }
revm-primitives = { path = "../primitives", version = "1.3.0", default-features = false }

# optional
serde = { version = "1.0", features = ["derive", "rc"], optional = true }
Expand Down
9 changes: 9 additions & 0 deletions crates/precompile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@

# v2.2.0
date 02.10.2023

Migration to alloy primitive types.

Full git log:
* af4146a - feat: Alloy primitives (#724) (15 hours ago) <evalir>

# v2.1.0
date 28.09.2023

Expand Down
4 changes: 2 additions & 2 deletions crates/precompile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"]
license = "MIT"
name = "revm-precompile"
repository = "https://github.com/bluealloy/revm"
version = "2.1.0"
version = "2.2.0"

# Don't need to run build script outside of this repo
exclude = ["build.rs", "src/blob/kzg_settings/*.txt"]

[dependencies]
revm-primitives = { path = "../primitives", version = "1.2.0", default-features = false }
revm-primitives = { path = "../primitives", version = "1.3.0", default-features = false }
bn = { package = "substrate-bn", version = "0.6", default-features = false }
num = { version = "0.4.0", default-features = false, features = ["alloc"] }
once_cell = { version = "1.17", default-features = false, features = ["alloc"] }
Expand Down
11 changes: 11 additions & 0 deletions crates/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@

# v1.3.0
date 02.10.2023

Migration to alloy primitive types.

Full git log:
* af4146a - feat: Alloy primitives (#724) (15 hours ago) <evalir>
* 83d27b0 - fix: use u128 for calc_blob_gasprice (#764) (16 hours ago) <Dan Cline>
* 1f86e45 - chore(deps): bump proptest from 1.2.0 to 1.3.1 (#763) (21 hours ago) <dependabot[bot]

# v1.2.0
date 28.09.2023

Expand Down
2 changes: 1 addition & 1 deletion crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "types"]
license = "MIT"
name = "revm-primitives"
repository = "https://github.com/bluealloy/revm"
version = "1.2.0"
version = "1.3.0"
readme = "../../README.md"

[dependencies]
Expand Down
10 changes: 10 additions & 0 deletions crates/revm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@

# v3.5.0
date 02.10.2023

Migration to alloy primitive types.

Full git log:
* 4e78fbe - docs: document non-zero amounts in State::increment_balances (#760) (15 hours ago) <Dan Cline>
* af4146a - feat: Alloy primitives (#724) (15 hours ago) <evalir>

# v3.4.0
date: 28.09.2023

Expand Down
6 changes: 3 additions & 3 deletions crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ keywords = ["no_std", "ethereum", "evm", "revm"]
license = "MIT"
name = "revm"
repository = "https://github.com/bluealloy/revm"
version = "3.4.0"
version = "3.5.0"
readme = "../../README.md"

[dependencies]
revm-interpreter = { path = "../interpreter", version = "1.2.0", default-features = false }
revm-precompile = { path = "../precompile", version = "2.1.0", default-features = false }
revm-interpreter = { path = "../interpreter", version = "1.3.0", default-features = false }
revm-precompile = { path = "../precompile", version = "2.2.0", default-features = false }

#misc
auto_impl = { version = "1.1", default-features = false }
Expand Down

0 comments on commit 23cbac4

Please sign in to comment.