Skip to content

Commit 19ceb6f

Browse files
chore: release
1 parent bea8f65 commit 19ceb6f

File tree

5 files changed

+28
-0
lines changed

5 files changed

+28
-0
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/interpreter/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
<<<<<<< Updated upstream
910
## [3.5.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.4.0...revm-interpreter-v3.5.0) - 2024-03-25
11+
=======
12+
## [4.0.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.4.0...revm-interpreter-v4.0.0) - 2024-03-25
13+
>>>>>>> Stashed changes
1014
1115
### Added
1216
- *(interpreter)* expose mutable access methods on stack and memory ([#1219](https://github.com/bluealloy/revm/pull/1219))
1317

18+
<<<<<<< Updated upstream
19+
=======
20+
### Other
21+
- *(interpreter)* keep track of remaining gas rather than spent ([#1221](https://github.com/bluealloy/revm/pull/1221))
22+
- *(interpreter)* don't run signextend with 31 too ([#1222](https://github.com/bluealloy/revm/pull/1222))
23+
24+
>>>>>>> Stashed changes
1425
## [3.4.0](https://github.com/bluealloy/revm/compare/revm-interpreter-v3.3.0...revm-interpreter-v3.4.0) - 2024-03-19
1526

1627
### Added

crates/interpreter/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ keywords = ["no_std", "ethereum", "evm", "revm", "interpreter"]
66
license = "MIT"
77
name = "revm-interpreter"
88
repository = "https://github.com/bluealloy/revm"
9+
<<<<<<< Updated upstream
910
version = "3.5.0"
11+
=======
12+
version = "4.0.0"
13+
>>>>>>> Stashed changes
1014
readme = "../../README.md"
1115

1216
[package.metadata.docs.rs]

crates/revm/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- fix eip3155 summary gas_used bug and add fork name ([#1216](https://github.com/bluealloy/revm/pull/1216))
1313

1414
### Other
15+
<<<<<<< Updated upstream
16+
=======
17+
- *(primitives)* kzg intro ([#1209](https://github.com/bluealloy/revm/pull/1209))
18+
- *(interpreter)* keep track of remaining gas rather than spent ([#1221](https://github.com/bluealloy/revm/pull/1221))
19+
>>>>>>> Stashed changes
1520
- Improve `EthersDB` ([#1208](https://github.com/bluealloy/revm/pull/1208))
1621

1722
## [7.2.0](https://github.com/bluealloy/revm/compare/revm-v7.1.0...revm-v7.2.0) - 2024-03-19

crates/revm/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
# revm
18+
<<<<<<< Updated upstream
1819
revm-interpreter = { path = "../interpreter", version = "3.5.0", default-features = false }
20+
=======
21+
revm-interpreter = { path = "../interpreter", version = "4.0.0", default-features = false }
22+
>>>>>>> Stashed changes
1923
revm-precompile = { path = "../precompile", version = "5.1.1", default-features = false }
2024

2125
# misc

0 commit comments

Comments
 (0)