From 2a8a3e967ec265fdc7120ff6b57ceab021ca69f6 Mon Sep 17 00:00:00 2001 From: Wei Tang Date: Tue, 30 Mar 2021 22:35:52 +0200 Subject: [PATCH] Bump version to 0.26.0 --- Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- gasometer/Cargo.toml | 6 +++--- runtime/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 52f5b88ad..e888652d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm" -version = "0.25.0" +version = "0.26.0" license = "Apache-2.0" authors = ["Wei Tang ", "Parity Technologies "] description = "SputnikVM - a Portable Blockchain Virtual Machine" @@ -10,9 +10,9 @@ edition = "2018" [dependencies] log = { version = "0.4", default-features = false } -evm-core = { version = "0.25", path = "core", default-features = false } -evm-gasometer = { version = "0.25", path = "gasometer", default-features = false } -evm-runtime = { version = "0.25", path = "runtime", default-features = false } +evm-core = { version = "0.26", path = "core", default-features = false } +evm-gasometer = { version = "0.26", path = "gasometer", default-features = false } +evm-runtime = { version = "0.26", path = "runtime", default-features = false } sha3 = { version = "0.8", default-features = false } rlp = { version = "0.5", default-features = false } primitive-types = { version = "0.9", default-features = false, features = ["rlp"] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 8b3fcf76e..dbbbecf3a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm-core" -version = "0.25.0" +version = "0.26.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 6fef0bc67..1cb0e0b11 100644 --- a/gasometer/Cargo.toml +++ b/gasometer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm-gasometer" -version = "0.25.0" +version = "0.26.0" license = "Apache-2.0" authors = ["Wei Tang ", "Parity Technologies "] description = "Portable Ethereum Virtual Machine implementation written in pure Rust." @@ -10,8 +10,8 @@ edition = "2018" [dependencies] primitive-types = { version = "0.9", default-features = false } -evm-core = { version = "0.25", path = "../core", default-features = false } -evm-runtime = { version = "0.25", path = "../runtime", default-features = false } +evm-core = { version = "0.26", path = "../core", default-features = false } +evm-runtime = { version = "0.26", path = "../runtime", default-features = false } [features] default = ["std"] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index b4b9a7e26..8f0668130 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evm-runtime" -version = "0.25.0" +version = "0.26.0" license = "Apache-2.0" authors = ["Wei Tang ", "Parity Technologies "] description = "SputnikVM - a Portable Blockchain Virtual Machine" @@ -9,7 +9,7 @@ keywords = ["no_std", "ethereum"] edition = "2018" [dependencies] -evm-core = { version = "0.25", path = "../core", default-features = false } +evm-core = { version = "0.26", path = "../core", default-features = false } primitive-types = { version = "0.9", default-features = false } sha3 = { version = "0.8", default-features = false }