Skip to content

Commit 60bbdf0

Browse files
committed
EVMC 8.0.0-alpha.1
Bump version: 8.0.0-alpha.0 → 8.0.0-alpha.1
1 parent 491ef90 commit 60bbdf0

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-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 = 8.0.0-alpha.0
2+
current_version = 8.0.0-alpha.1
33
tag = True
44
sign_tags = True
55
tag_message = EVMC {new_version}

CMakeLists.txt

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

4747
project(evmc)
48-
set(PROJECT_VERSION 8.0.0-alpha.0)
48+
set(PROJECT_VERSION 8.0.0-alpha.1)
4949

5050
cable_configure_compiler(NO_STACK_PROTECTION)
5151
if(CABLE_COMPILER_GNULIKE)

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 = "8.0.0-alpha.0"
7+
version = "8.0.0-alpha.1"
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 = "8.0.0-alpha.0"
7+
version = "8.0.0-alpha.1"
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 = "8.0.0-alpha.0" }
20+
evmc-vm = { path = "../evmc-vm", version = "8.0.0-alpha.1" }
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 = "8.0.0-alpha.0"
7+
version = "8.0.0-alpha.1"
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 = "8.0.0-alpha.0"
7+
version = "8.0.0-alpha.1"
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 = "8.0.0-alpha.0" }
15+
evmc-sys = { path = "../evmc-sys", version = "8.0.0-alpha.1" }

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 = "8.0.0-alpha.0"
7+
version = "8.0.0-alpha.1"
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
@@ -6,7 +6,7 @@
66
use evmc_declare::evmc_declare_vm;
77
use evmc_vm::*;
88

9-
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "8.0.0-alpha.0")]
9+
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "8.0.0-alpha.1")]
1010
pub struct ExampleRustVM;
1111

1212
impl EvmcVm for ExampleRustVM {

0 commit comments

Comments
 (0)