Skip to content

Commit 24f939e

Browse files
committed
EVMC 11.0.0
Bump version: 11.0.0-alpha.2 → 11.0.0
1 parent bf7f382 commit 24f939e

File tree

9 files changed

+14
-12
lines changed

9 files changed

+14
-12
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 11.0.0-alpha.2
2+
current_version = 11.0.0
33
tag = True
44
sign_tags = True
55
tag_message = EVMC {new_version}

CHANGELOG.md

+4-2
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.0]unreleased
8+
## [11.0.0]2023-11-29
99

1010
### Added
1111

@@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning].
1616
[#696](https://github.com/ethereum/evmc/pull/696)
1717
- Added [EIP-1153](https://eips.ethereum.org/EIPS/eip-1153) transient storage support
1818
[#693](https://github.com/ethereum/evmc/pull/693)
19+
- Go: the `Execute()` now also returns the amount of gas refunded.
20+
[#690](https://github.com/ethereum/evmc/pull/690)
1921

2022
## [10.1.1] — 2023-09-02
2123

@@ -702,7 +704,7 @@ removed.
702704
[#52](https://github.com/ethereum/evmc/pull/52)
703705

704706

705-
[11.0.0]: https://github.com/ethereum/evmc/compare/v10.1.1..master
707+
[11.0.0]: https://github.com/ethereum/evmc/releases/tag/v11.0.0
706708
[10.1.1]: https://github.com/ethereum/evmc/releases/tag/v10.1.1
707709
[10.1.0]: https://github.com/ethereum/evmc/releases/tag/v10.1.0
708710
[10.0.0]: https://github.com/ethereum/evmc/releases/tag/v10.0.0

CMakeLists.txt

+1-1
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 11.0.0-alpha.2)
47+
set(PROJECT_VERSION 11.0.0)
4848

4949
set(CMAKE_CXX_EXTENSIONS OFF)
5050

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

+1-1
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-alpha.2"
7+
version = "11.0.0"
88
authors = ["Jake Lang <[email protected]>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"

bindings/rust/evmc-declare/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "evmc-declare"
7-
version = "11.0.0-alpha.2"
7+
version = "11.0.0"
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-alpha.2" }
20+
evmc-vm = { path = "../evmc-vm", version = "11.0.0" }
2121

2222
[lib]
2323
proc-macro = true

bindings/rust/evmc-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

bindings/rust/evmc-vm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
[package]
66
name = "evmc-vm"
7-
version = "11.0.0-alpha.2"
7+
version = "11.0.0"
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-alpha.2" }
15+
evmc-sys = { path = "../evmc-sys", version = "11.0.0" }

examples/example-rust-vm/Cargo.toml

+1-1
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-alpha.2"
7+
version = "11.0.0"
88
authors = ["Alex Beregszaszi <[email protected]>", "Jake Lang <[email protected]>"]
99
edition = "2018"
1010
publish = false

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

+1-1
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-alpha.2")]
9+
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "11.0.0")]
1010
pub struct ExampleRustVM {
1111
verbosity: i8,
1212
}

0 commit comments

Comments
 (0)