diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa4bef446..5508adeafc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag. +# v8 tag [small release] +date: 03.06.2022 + +* revm: v1.4.0 # v7 tag [small release] date: 11.5.2022 diff --git a/Cargo.lock b/Cargo.lock index f6f297d39b..62dd10164c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1906,7 +1906,7 @@ dependencies = [ [[package]] name = "revm" -version = "1.3.1" +version = "1.4.0" dependencies = [ "arrayref", "auto_impl", diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 5d9a10123a..7873da4c69 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -1,4 +1,13 @@ +# v1.4.0 +date: 03.06.2022 + +Small release: + +* fix: BLOCKHASH should return 0 if number not in last 256 blocks (#112) +* feat: add getters for cachedb (#119) +* bump some lib versions. + # v1.3.1 date: 11.4.2022 diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index 39113f7c78..e3a0147e5a 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["no_std", "ethereum", "evm", "revm"] license = "MIT" name = "revm" repository = "https://github.com/bluealloy/revm" -version = "1.3.1" +version = "1.4.0" [dependencies] arrayref = "0.3"