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

Commit d2de33f

Browse files
committed
EVMC 11.0.1
Bump version: 11.0.0 → 11.0.1
1 parent 82d298b commit d2de33f

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
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 = 11.0.0
2+
current_version = 11.0.1
33
tag = True
44
sign_tags = True
55
tag_message = EVMC {new_version}

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
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-
## [11.0.1]unreleased
8+
## [11.0.1]2023-12-20
99

1010
### Changed
1111

@@ -711,7 +711,7 @@ removed.
711711
[#52](https://github.com/ethereum/evmc/pull/52)
712712

713713

714-
[11.0.1]: https://github.com/ethereum/evmc/compare/v11.0.0..master
714+
[11.0.1]: https://github.com/ethereum/evmc/releases/tag/v11.0.1
715715
[11.0.0]: https://github.com/ethereum/evmc/releases/tag/v11.0.0
716716
[10.1.1]: https://github.com/ethereum/evmc/releases/tag/v10.1.1
717717
[10.1.0]: https://github.com/ethereum/evmc/releases/tag/v10.1.0

CMakeLists.txt

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

4242
project(evmc)
43-
set(PROJECT_VERSION 11.0.0)
43+
set(PROJECT_VERSION 11.0.1)
4444

4545
set(CMAKE_CXX_EXTENSIONS OFF)
4646

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 = "11.0.0"
7+
version = "11.0.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 = "11.0.0"
7+
version = "11.0.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 = "11.0.0" }
20+
evmc-vm = { path = "../evmc-vm", version = "11.0.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 = "11.0.0"
7+
version = "11.0.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 = "11.0.0"
7+
version = "11.0.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 = "11.0.0" }
15+
evmc-sys = { path = "../evmc-sys", version = "11.0.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 = "11.0.0"
7+
version = "11.0.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 @@ use core::str::FromStr;
66
use evmc_declare::evmc_declare_vm;
77
use evmc_vm::*;
88

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

0 commit comments

Comments
 (0)