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

Commit 649c661

Browse files
committed
EVMC 7.5.0
Bump version: 7.5.0-alpha.0 → 7.5.0
1 parent ae5c82b commit 649c661

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 = 7.5.0-alpha.0
2+
current_version = 7.5.0
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-
## [7.5.0]unreleased
8+
## [7.5.0]2021-03-23
99

1010
### Added
1111

@@ -536,7 +536,7 @@ removed.
536536
[#52](https://github.com/ethereum/evmc/pull/52)
537537

538538

539-
[7.5.0]: https://github.com/ethereum/evmc/compare/master..v7.4.0
539+
[7.5.0]: https://github.com/ethereum/evmc/releases/tag/v7.5.0
540540
[7.4.0]: https://github.com/ethereum/evmc/releases/tag/v7.4.0
541541
[7.3.0]: https://github.com/ethereum/evmc/releases/tag/v7.3.0
542542
[7.2.0]: https://github.com/ethereum/evmc/releases/tag/v7.2.0

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 7.5.0-alpha.0)
48+
set(PROJECT_VERSION 7.5.0)
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 = "7.5.0-alpha.0"
7+
version = "7.5.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

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 = "7.5.0-alpha.0"
7+
version = "7.5.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 = "7.5.0-alpha.0" }
20+
evmc-vm = { path = "../evmc-vm", version = "7.5.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 = "7.5.0-alpha.0"
7+
version = "7.5.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

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 = "7.5.0-alpha.0"
7+
version = "7.5.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 = "7.5.0-alpha.0" }
15+
evmc-sys = { path = "../evmc-sys", version = "7.5.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 = "7.5.0-alpha.0"
7+
version = "7.5.0"
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", "7.5.0-alpha.0")]
9+
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "7.5.0")]
1010
pub struct ExampleRustVM;
1111

1212
impl EvmcVm for ExampleRustVM {

0 commit comments

Comments
 (0)