Skip to content

Commit

Permalink
EVMC 7.2.0
Browse files Browse the repository at this point in the history
Bump version: 7.2.0-alpha.0 → 7.2.0
  • Loading branch information
chfast committed May 13, 2020
1 parent a2c78df commit 7f9a90b
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 7.2.0-alpha.0
current_version = 7.2.0
tag = True
sign_tags = True
tag_message = EVMC {new_version}
Expand Down Expand Up @@ -41,4 +41,3 @@ search = version = \"{current_version}\"
serialize = {major}
search = ABI version {current_version}
replace = ABI version {new_version}

5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog],
and this project adheres to [Semantic Versioning].


## [7.2.0]unreleased
## [7.2.0]2020-05-13

### Added

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


[7.2.0]: https://github.com/ethereum/evmc/compare/v7.1.0...master
[7.3.0]: https://github.com/ethereum/evmc/compare/v7.2.0...master
[7.2.0]: https://github.com/ethereum/evmc/releases/tag/v7.2.0
[7.1.0]: https://github.com/ethereum/evmc/releases/tag/v7.1.0
[7.0.0]: https://github.com/ethereum/evmc/releases/tag/v7.0.0
[6.3.1]: https://github.com/ethereum/evmc/releases/tag/v6.3.1
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ endif()
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release)

project(evmc)
set(PROJECT_VERSION 7.2.0-alpha.0)
set(PROJECT_VERSION 7.2.0)

cable_configure_compiler(NO_STACK_PROTECTION)
if(CABLE_COMPILER_CLANG)
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/evmc-declare-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "evmc-declare-tests"
version = "7.2.0-alpha.0"
version = "7.2.0"
authors = ["Jake Lang <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/evmc-declare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "evmc-declare"
version = "7.2.0-alpha.0"
version = "7.2.0"
authors = ["Jake Lang <[email protected]>", "Alex Beregszaszi <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
Expand All @@ -17,7 +17,7 @@ heck = "0.3.1"
proc-macro2 = "1.0"
syn = { version = "1.0", features = ["full"] }
# For documentation examples
evmc-vm = { path = "../evmc-vm", version = "7.2.0-alpha.0" }
evmc-vm = { path = "../evmc-vm", version = "7.2.0" }

[lib]
proc-macro = true
2 changes: 1 addition & 1 deletion bindings/rust/evmc-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "evmc-sys"
version = "7.2.0-alpha.0"
version = "7.2.0"
authors = ["Alex Beregszaszi <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/evmc-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

[package]
name = "evmc-vm"
version = "7.2.0-alpha.0"
version = "7.2.0"
authors = ["Alex Beregszaszi <[email protected]>", "Jake Lang <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
description = "Bindings to EVMC (VM specific)"
edition = "2018"

[dependencies]
evmc-sys = { path = "../evmc-sys", version = "7.2.0-alpha.0" }
evmc-sys = { path = "../evmc-sys", version = "7.2.0" }

0 comments on commit 7f9a90b

Please sign in to comment.