From 76b80ac9e238b528326e0d00c661c532f1fc1c29 Mon Sep 17 00:00:00 2001 From: tgmichel Date: Fri, 20 May 2022 09:24:00 +0200 Subject: [PATCH 1/2] version `0.36.0` --- Cargo.toml | 2 +- core/Cargo.toml | 2 +- gasometer/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 83c004e12..4e85fb6c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm" -version = "0.35.0" +version = "0.36.0" license = "Apache-2.0" authors = ["Wei Tang ", "Parity Technologies "] description = "SputnikVM - a Portable Blockchain Virtual Machine" diff --git a/core/Cargo.toml b/core/Cargo.toml index 2eed67694..d4d993241 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm-core" -version = "0.35.0" +version = "0.36.0" license = "Apache-2.0" authors = ["Wei Tang ", "Parity Technologies "] description = "Portable Ethereum Virtual Machine implementation written in pure Rust." diff --git a/gasometer/Cargo.toml b/gasometer/Cargo.toml index 133148e03..7fdf324aa 100644 --- a/gasometer/Cargo.toml +++ b/gasometer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm-gasometer" -version = "0.35.0" +version = "0.36.0" license = "Apache-2.0" authors = ["Wei Tang ", "Parity Technologies "] description = "Portable Ethereum Virtual Machine implementation written in pure Rust." diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 8214e4b6d..5d84a85fd 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm-runtime" -version = "0.35.0" +version = "0.36.0" license = "Apache-2.0" authors = ["Wei Tang ", "Parity Technologies "] description = "SputnikVM - a Portable Blockchain Virtual Machine" From d5ddb41130241599fa9a93a243e8858bf1e9c1c8 Mon Sep 17 00:00:00 2001 From: tgmichel Date: Fri, 20 May 2022 09:28:42 +0200 Subject: [PATCH 2/2] More --- Cargo.toml | 6 +++--- fuzzer/Cargo.toml | 2 +- gasometer/Cargo.toml | 4 ++-- runtime/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4e85fb6c8..e1f809a55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,9 +10,9 @@ edition = "2018" [dependencies] log = { version = "0.4", default-features = false } -evm-core = { version = "0.35", path = "core", default-features = false } -evm-gasometer = { version = "0.35", path = "gasometer", default-features = false } -evm-runtime = { version = "0.35", path = "runtime", default-features = false } +evm-core = { version = "0.36", path = "core", default-features = false } +evm-gasometer = { version = "0.36", path = "gasometer", default-features = false } +evm-runtime = { version = "0.36", path = "runtime", default-features = false } sha3 = { version = "0.10", default-features = false } rlp = { version = "0.5", default-features = false } primitive-types = { version = "0.11", default-features = false, features = ["rlp"] } diff --git a/fuzzer/Cargo.toml b/fuzzer/Cargo.toml index 5059da943..10e2ac9fc 100644 --- a/fuzzer/Cargo.toml +++ b/fuzzer/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] honggfuzz = "0.5" -evm-core = { version = "0.35", path= "../core" } +evm-core = { version = "0.36", path= "../core" } [[bin]] name = "evm_fuzz" diff --git a/gasometer/Cargo.toml b/gasometer/Cargo.toml index 7fdf324aa..b560ce1da 100644 --- a/gasometer/Cargo.toml +++ b/gasometer/Cargo.toml @@ -10,8 +10,8 @@ edition = "2018" [dependencies] primitive-types = { version = "0.11", default-features = false } -evm-core = { version = "0.35", path = "../core", default-features = false } -evm-runtime = { version = "0.35", path = "../runtime", default-features = false } +evm-core = { version = "0.36", path = "../core", default-features = false } +evm-runtime = { version = "0.36", path = "../runtime", default-features = false } environmental = { version = "1.1.2", default-features = false, optional = true } [features] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 5d84a85fd..554f32b5b 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["no_std", "ethereum"] edition = "2018" [dependencies] -evm-core = { version = "0.35", path = "../core", default-features = false } +evm-core = { version = "0.36", path = "../core", default-features = false } primitive-types = { version = "0.11", default-features = false } sha3 = { version = "0.10", default-features = false } environmental = { version = "1.1.2", default-features = false, optional = true}