From eda05c6866ac06bd93d62b605cbec5839d85c221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Sat, 8 Jan 2022 18:09:40 +0100 Subject: [PATCH] EVMC 10.0.0-alpha.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version: 10.0.0-alpha.2 → 10.0.0-alpha.3 --- .bumpversion.cfg | 2 +- CMakeLists.txt | 2 +- bindings/rust/evmc-declare-tests/Cargo.toml | 2 +- bindings/rust/evmc-declare/Cargo.toml | 4 ++-- bindings/rust/evmc-sys/Cargo.toml | 2 +- bindings/rust/evmc-vm/Cargo.toml | 4 ++-- examples/example-rust-vm/Cargo.toml | 2 +- examples/example-rust-vm/src/lib.rs | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d5882effc..869a90e96 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 10.0.0-alpha.2 +current_version = 10.0.0-alpha.3 tag = True sign_tags = True tag_message = EVMC {new_version} diff --git a/CMakeLists.txt b/CMakeLists.txt index cfa4756d5..ce7341dea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,7 +44,7 @@ endif() cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release) project(evmc) -set(PROJECT_VERSION 10.0.0-alpha.2) +set(PROJECT_VERSION 10.0.0-alpha.3) include(GNUInstallDirs) # Must be included after any language is enabled. if(NOT DEFINED CMAKE_RUNTIME_OUTPUT_DIRECTORY) diff --git a/bindings/rust/evmc-declare-tests/Cargo.toml b/bindings/rust/evmc-declare-tests/Cargo.toml index 7777406e2..65a2992d6 100644 --- a/bindings/rust/evmc-declare-tests/Cargo.toml +++ b/bindings/rust/evmc-declare-tests/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-declare-tests" -version = "10.0.0-alpha.2" +version = "10.0.0-alpha.3" authors = ["Jake Lang "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" diff --git a/bindings/rust/evmc-declare/Cargo.toml b/bindings/rust/evmc-declare/Cargo.toml index d77aca24b..64a9278a3 100644 --- a/bindings/rust/evmc-declare/Cargo.toml +++ b/bindings/rust/evmc-declare/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-declare" -version = "10.0.0-alpha.2" +version = "10.0.0-alpha.3" authors = ["Jake Lang ", "Alex Beregszaszi "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" @@ -17,7 +17,7 @@ heck = "0.3.1" proc-macro2 = "1.0" syn = { version = "1.0", features = ["full"] } # For documentation examples -evmc-vm = { path = "../evmc-vm", version = "10.0.0-alpha.2" } +evmc-vm = { path = "../evmc-vm", version = "10.0.0-alpha.3" } [lib] proc-macro = true diff --git a/bindings/rust/evmc-sys/Cargo.toml b/bindings/rust/evmc-sys/Cargo.toml index 35924a00e..01eb704d9 100644 --- a/bindings/rust/evmc-sys/Cargo.toml +++ b/bindings/rust/evmc-sys/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-sys" -version = "10.0.0-alpha.2" +version = "10.0.0-alpha.3" authors = ["Alex Beregszaszi "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" diff --git a/bindings/rust/evmc-vm/Cargo.toml b/bindings/rust/evmc-vm/Cargo.toml index 19cad8bff..869a7fae3 100644 --- a/bindings/rust/evmc-vm/Cargo.toml +++ b/bindings/rust/evmc-vm/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-vm" -version = "10.0.0-alpha.2" +version = "10.0.0-alpha.3" authors = ["Alex Beregszaszi ", "Jake Lang "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" @@ -12,4 +12,4 @@ description = "Bindings to EVMC (VM specific)" edition = "2018" [dependencies] -evmc-sys = { path = "../evmc-sys", version = "10.0.0-alpha.2" } +evmc-sys = { path = "../evmc-sys", version = "10.0.0-alpha.3" } diff --git a/examples/example-rust-vm/Cargo.toml b/examples/example-rust-vm/Cargo.toml index 83c9c8ecd..6907dd6bb 100644 --- a/examples/example-rust-vm/Cargo.toml +++ b/examples/example-rust-vm/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "example-rust-vm" -version = "10.0.0-alpha.2" +version = "10.0.0-alpha.3" authors = ["Alex Beregszaszi ", "Jake Lang "] edition = "2018" publish = false diff --git a/examples/example-rust-vm/src/lib.rs b/examples/example-rust-vm/src/lib.rs index 4b7e5349b..d2197eec5 100644 --- a/examples/example-rust-vm/src/lib.rs +++ b/examples/example-rust-vm/src/lib.rs @@ -6,7 +6,7 @@ use evmc_declare::evmc_declare_vm; use evmc_vm::*; -#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "10.0.0-alpha.2")] +#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "10.0.0-alpha.3")] pub struct ExampleRustVM; impl EvmcVm for ExampleRustVM {