Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.

Commit 1e48d38

Browse files
committed
EVMC 10.0.0-alpha.4
Bump version: 10.0.0-alpha.3 → 10.0.0-alpha.4
1 parent d5ee47f commit 1e48d38

File tree

9 files changed

+11
-10
lines changed

9 files changed

+11
-10
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 10.0.0-alpha.3
2+
current_version = 10.0.0-alpha.4
33
tag = True
44
sign_tags = True
55
tag_message = EVMC {new_version}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning].
4242
[#618](https://github.com/ethereum/evmc/pull/618)
4343
[#620](https://github.com/ethereum/evmc/pull/620)
4444
[#621](https://github.com/ethereum/evmc/pull/621)
45+
[#632](https://github.com/ethereum/evmc/pull/632)
4546

4647
## [9.0.0] — 2021-06-30
4748

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ endif()
4444
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release)
4545

4646
project(evmc)
47-
set(PROJECT_VERSION 10.0.0-alpha.3)
47+
set(PROJECT_VERSION 10.0.0-alpha.4)
4848

4949
include(GNUInstallDirs) # Must be included after any language is enabled.
5050
if(NOT DEFINED CMAKE_RUNTIME_OUTPUT_DIRECTORY)

bindings/rust/evmc-declare-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "evmc-declare-tests"
7-
version = "10.0.0-alpha.3"
7+
version = "10.0.0-alpha.4"
88
authors = ["Jake Lang <[email protected]>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"

bindings/rust/evmc-declare/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "evmc-declare"
7-
version = "10.0.0-alpha.3"
7+
version = "10.0.0-alpha.4"
88
authors = ["Jake Lang <[email protected]>", "Alex Beregszaszi <[email protected]>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"
@@ -17,7 +17,7 @@ heck = "0.3.1"
1717
proc-macro2 = "1.0"
1818
syn = { version = "1.0", features = ["full"] }
1919
# For documentation examples
20-
evmc-vm = { path = "../evmc-vm", version = "10.0.0-alpha.3" }
20+
evmc-vm = { path = "../evmc-vm", version = "10.0.0-alpha.4" }
2121

2222
[lib]
2323
proc-macro = true

bindings/rust/evmc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "evmc-sys"
7-
version = "10.0.0-alpha.3"
7+
version = "10.0.0-alpha.4"
88
authors = ["Alex Beregszaszi <[email protected]>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"

bindings/rust/evmc-vm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
[package]
66
name = "evmc-vm"
7-
version = "10.0.0-alpha.3"
7+
version = "10.0.0-alpha.4"
88
authors = ["Alex Beregszaszi <[email protected]>", "Jake Lang <[email protected]>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"
1111
description = "Bindings to EVMC (VM specific)"
1212
edition = "2018"
1313

1414
[dependencies]
15-
evmc-sys = { path = "../evmc-sys", version = "10.0.0-alpha.3" }
15+
evmc-sys = { path = "../evmc-sys", version = "10.0.0-alpha.4" }

examples/example-rust-vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "example-rust-vm"
7-
version = "10.0.0-alpha.3"
7+
version = "10.0.0-alpha.4"
88
authors = ["Alex Beregszaszi <[email protected]>", "Jake Lang <[email protected]>"]
99
edition = "2018"
1010
publish = false

examples/example-rust-vm/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use evmc_declare::evmc_declare_vm;
66
use evmc_vm::*;
77

8-
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "10.0.0-alpha.3")]
8+
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "10.0.0-alpha.4")]
99
pub struct ExampleRustVM;
1010

1111
impl EvmcVm for ExampleRustVM {

0 commit comments

Comments
 (0)