Skip to content

Commit 8874e47

Browse files
committed
EVMC 12.0.0
Bump version: 12.0.0-alpha.0 → 12.0.0
1 parent c4c88ec commit 8874e47

File tree

9 files changed

+12
-11
lines changed

9 files changed

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

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Documentation of all notable changes to the **EVMC** project.
55
The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

8-
## [12.0.0]unreleased
8+
## [12.0.0]2024-08-05
99

1010
### Added
1111

@@ -742,6 +742,7 @@ removed.
742742
[#52](https://github.com/ethereum/evmc/pull/52)
743743

744744

745+
[12.0.0]: https://github.com/ethereum/evmc/releases/tag/v12.0.0
745746
[11.0.1]: https://github.com/ethereum/evmc/releases/tag/v11.0.1
746747
[11.0.0]: https://github.com/ethereum/evmc/releases/tag/v11.0.0
747748
[10.1.1]: https://github.com/ethereum/evmc/releases/tag/v10.1.1

CMakeLists.txt

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

4040
project(evmc)
41-
set(PROJECT_VERSION 12.0.0-alpha.0)
41+
set(PROJECT_VERSION 12.0.0)
4242

4343
set(CMAKE_CXX_EXTENSIONS OFF)
4444

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 = "12.0.0-alpha.0"
7+
version = "12.0.0"
88
authors = ["Jake Lang <jak3lang@gmail.com>"]
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 = "12.0.0-alpha.0"
7+
version = "12.0.0"
88
authors = ["Jake Lang <jak3lang@gmail.com>", "Alex Beregszaszi <alex@rtfs.hu>"]
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 = "12.0.0-alpha.0" }
20+
evmc-vm = { path = "../evmc-vm", version = "12.0.0" }
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 = "12.0.0-alpha.0"
7+
version = "12.0.0"
88
authors = ["Alex Beregszaszi <alex@rtfs.hu>"]
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 = "12.0.0-alpha.0"
7+
version = "12.0.0"
88
authors = ["Alex Beregszaszi <alex@rtfs.hu>", "Jake Lang <jak3lang@gmail.com>"]
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 = "12.0.0-alpha.0" }
15+
evmc-sys = { path = "../evmc-sys", version = "12.0.0" }

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 = "12.0.0-alpha.0"
7+
version = "12.0.0"
88
authors = ["Alex Beregszaszi <alex@rtfs.hu>", "Jake Lang <jak3lang@gmail.com>"]
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 @@ use core::str::FromStr;
66
use evmc_declare::evmc_declare_vm;
77
use evmc_vm::*;
88

9-
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "12.0.0-alpha.0")]
9+
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "12.0.0")]
1010
pub struct ExampleRustVM {
1111
verbosity: i8,
1212
}

0 commit comments

Comments
 (0)