Skip to content

Commit ed662e5

Browse files
chore: release
1 parent c30e096 commit ed662e5

File tree

12 files changed

+43
-16
lines changed

12 files changed

+43
-16
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bins/revm-test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
bytes = "1.4"
99
hex = "0.4"
10-
revm = { path = "../../crates/revm", version = "7.1.0",default-features=false }
10+
revm = { path = "../../crates/revm", version = "7.1.1",default-features=false }
1111
microbench = "0.5"
1212
alloy-sol-macro = "0.6.4"
1313
alloy-sol-types = "0.6.4"

bins/revme/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.1](https://github.com/toothpickstirvat/revm/compare/revme-v0.3.0...revme-v0.3.1) - 2024-03-12
10+
11+
### Other
12+
- tag v32 revm v7.1.0 ([#1176](https://github.com/toothpickstirvat/revm/pull/1176))
13+
914
## [0.3.0](https://github.com/bluealloy/revm/compare/revme-v0.2.2...revme-v0.3.0) - 2024-03-08
1015

1116
### Added

bins/revme/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["ethereum", "evm"]
66
license = "MIT"
77
repository = "https://github.com/bluealloy/revm"
88
description = "Rust Ethereum Virtual Machine Executable"
9-
version = "0.3.0"
9+
version = "0.3.1"
1010

1111
[dependencies]
1212
hash-db = "0.15"
@@ -15,7 +15,7 @@ hashbrown = "0.14"
1515
indicatif = "0.17"
1616
microbench = "0.5"
1717
plain_hasher = "0.2"
18-
revm = { path = "../../crates/revm", version = "7.1.0", default-features = false, features = [
18+
revm = { path = "../../crates/revm", version = "7.1.1", default-features = false, features = [
1919
"ethersdb",
2020
"std",
2121
"serde-json",

crates/interpreter/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.3.1](https://github.com/toothpickstirvat/revm/compare/revm-interpreter-v3.3.0...revm-interpreter-v3.3.1) - 2024-03-12
10+
11+
### Other
12+
- Fix typo in readme ([#1185](https://github.com/toothpickstirvat/revm/pull/1185))
13+
914
## [3.3.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.2.0...revm-interpreter-v3.3.0) - 2024-03-08
1015

1116
### Added

crates/interpreter/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"]
66
license = "MIT"
77
name = "revm-interpreter"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "3.3.0"
9+
version = "3.3.1"
1010
readme = "../../README.md"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
1414
rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
17-
revm-primitives = { path = "../primitives", version = "3.0.0", default-features = false }
17+
revm-primitives = { path = "../primitives", version = "3.0.1", default-features = false }
1818

1919
# optional
2020
serde = { version = "1.0", default-features = false, features = [

crates/precompile/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [5.0.1](https://github.com/toothpickstirvat/revm/compare/revm-precompile-v5.0.0...revm-precompile-v5.0.1) - 2024-03-12
10+
11+
### Other
12+
- updated the following local packages: revm-primitives
13+
914
## [5.0.0](https://github.com/bluealloy/revm/compare/revm-precompile-v4.1.0...revm-precompile-v5.0.0) - 2024-03-08
1015

1116
### Added

crates/precompile/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ keywords = ["no_std", "ethereum", "evm", "revm", "precompiles"]
66
license = "MIT"
77
name = "revm-precompile"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "5.0.0"
9+
version = "5.0.1"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
1313
rustdoc-args = ["--cfg", "docsrs"]
1414

1515
[dependencies]
16-
revm-primitives = { path = "../primitives", version = "3.0.0", default-features = false }
16+
revm-primitives = { path = "../primitives", version = "3.0.1", default-features = false }
1717
bn = { package = "substrate-bn", version = "0.6", default-features = false }
1818
once_cell = { version = "1.19", default-features = false, features = ["alloc"] }
1919
ripemd = { version = "0.1", default-features = false }

crates/primitives/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.0.1](https://github.com/toothpickstirvat/revm/compare/revm-primitives-v3.0.0...revm-primitives-v3.0.1) - 2024-03-12
10+
11+
### Other
12+
- Fix typo in readme ([#1185](https://github.com/toothpickstirvat/revm/pull/1185))
13+
- improve error implementations ([#1183](https://github.com/toothpickstirvat/revm/pull/1183))
14+
915
## [3.0.0](https://github.com/bluealloy/revm/compare/revm-primitives-v2.1.0...revm-primitives-v3.0.0) - 2024-03-08
1016

1117
### Added

crates/primitives/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm", "types"]
66
license = "MIT"
77
name = "revm-primitives"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "3.0.0"
9+
version = "3.0.1"
1010
readme = "../../README.md"
1111

1212
# Don't need to run build script outside of this repo

crates/revm/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [7.1.1](https://github.com/toothpickstirvat/revm/compare/revm-v7.1.0...revm-v7.1.1) - 2024-03-12
10+
11+
### Other
12+
- Fix typo in readme ([#1185](https://github.com/toothpickstirvat/revm/pull/1185))
13+
- Update post_execution.rs ([#1180](https://github.com/toothpickstirvat/revm/pull/1180))
14+
915
## [7.1.0](https://github.com/bluealloy/revm/compare/revm-v7.0.0...revm-v8.0.0) - 2024-03-08
1016

1117
### Added

crates/revm/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm"]
66
license = "MIT"
77
name = "revm"
88
repository = "https://github.com/bluealloy/revm"
9-
version = "7.1.0"
9+
version = "7.1.1"
1010
readme = "../../README.md"
1111

1212
[package.metadata.docs.rs]
@@ -15,8 +15,8 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
# revm
18-
revm-interpreter = { path = "../interpreter", version = "3.3.0", default-features = false }
19-
revm-precompile = { path = "../precompile", version = "5.0.0", default-features = false }
18+
revm-interpreter = { path = "../interpreter", version = "3.3.1", default-features = false }
19+
revm-precompile = { path = "../precompile", version = "5.0.1", default-features = false }
2020

2121
# misc
2222
auto_impl = { version = "1.2", default-features = false }

0 commit comments

Comments
 (0)