Skip to content

Commit

Permalink
[revm] Bump to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rakita committed Jan 14, 2022
1 parent 1318700 commit 2af7bd4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Because this is workspace with multi libraries tags will be simplified, and with this document you can match version of project with git tag.

# v4 tag
* revm: v1.1.0

# v3 tag

* revm: v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion 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 @@ -18,7 +18,7 @@ indicatif = "0.16"
plain_hasher = "0.2"
primitive-types = {version = "0.10", features = ["rlp", "serde"]}

revm = {path="../../crates/revm", version="1.0", features = ["web3db"]}
revm = {path="../../crates/revm", version="1.1", features = ["web3db"]}
rlp = {version = "0.5", default-features = false}
serde = "1.0"
serde_derive = "1.0"
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 @@
# v1.1.0
date: 14.12.2021

There is bug introduced in last release with gas blco koptimization, it will crash revm if anywhere in contract is unknown OpCode. And now returning log after execution (ups) included them in eth/tests verification.

Changes:
* Bug fix for unknown OpCode
* Omit edgecase high nonce test. tracer gas fix
* Some internal cleanup

# v1.0.0
date: 18.12.2021

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

[dependencies]
auto_impl = {version = "0.5", default-features = false}
Expand Down
2 changes: 1 addition & 1 deletion crates/revmjs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ hex = "0.4"
js-sys = "0.3"
primitive-types = {version = "0.10", default-features = false, features = ["rlp", "rustc-hex"]}
# for windows build remove ecrecover features. see more here: https://github.com/bluealloy/revm/issues/3
revm = {path = "../revm", version = "1.0", default-features = false}#, features = ["ecrecover"]}
revm = {path = "../revm", version = "1.1", default-features = false}#, features = ["ecrecover"]}
wasm-bindgen = "0.2"
bn-rs = "0.2"

0 comments on commit 2af7bd4

Please sign in to comment.