Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Commit 7f9a90b

Browse files
committed
EVMC 7.2.0
Bump version: 7.2.0-alpha.0 → 7.2.0
1 parent a2c78df commit 7f9a90b

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 7.2.0-alpha.0
2+
current_version = 7.2.0
33
tag = True
44
sign_tags = True
55
tag_message = EVMC {new_version}
@@ -41,4 +41,3 @@ search = version = \"{current_version}\"
4141
serialize = {major}
4242
search = ABI version {current_version}
4343
replace = ABI version {new_version}
44-

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

88

9-
## [7.2.0]unreleased
9+
## [7.2.0]2020-05-13
1010

1111
### Added
1212

@@ -457,7 +457,8 @@ removed.
457457
[#52](https://github.com/ethereum/evmc/pull/52)
458458

459459

460-
[7.2.0]: https://github.com/ethereum/evmc/compare/v7.1.0...master
460+
[7.3.0]: https://github.com/ethereum/evmc/compare/v7.2.0...master
461+
[7.2.0]: https://github.com/ethereum/evmc/releases/tag/v7.2.0
461462
[7.1.0]: https://github.com/ethereum/evmc/releases/tag/v7.1.0
462463
[7.0.0]: https://github.com/ethereum/evmc/releases/tag/v7.0.0
463464
[6.3.1]: https://github.com/ethereum/evmc/releases/tag/v6.3.1

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.2.0-alpha.0)
48+
set(PROJECT_VERSION 7.2.0)
4949

5050
cable_configure_compiler(NO_STACK_PROTECTION)
5151
if(CABLE_COMPILER_CLANG)

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

0 commit comments

Comments
 (0)