diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1beb5108f..37a55e6af 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 7.3.0-rc.1 +current_version = 7.3.0 tag = True sign_tags = True tag_message = EVMC {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 9274ca6bd..de65524f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. -## [7.3.0] — unreleased +## [7.3.0] — 2020-05-20 ### Added @@ -472,7 +472,7 @@ removed. [#52](https://github.com/ethereum/evmc/pull/52) -[7.3.0]: https://github.com/ethereum/evmc/compare/v7.2.0...master +[7.3.0]: https://github.com/ethereum/evmc/releases/tag/v7.3.0 [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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 89487df33..d1f0c829d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ endif() cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release) project(evmc) -set(PROJECT_VERSION 7.3.0-rc.1) +set(PROJECT_VERSION 7.3.0) cable_configure_compiler(NO_STACK_PROTECTION) if(CABLE_COMPILER_CLANG) diff --git a/bindings/rust/evmc-declare-tests/Cargo.toml b/bindings/rust/evmc-declare-tests/Cargo.toml index ebafd7186..d1c6a51a6 100644 --- a/bindings/rust/evmc-declare-tests/Cargo.toml +++ b/bindings/rust/evmc-declare-tests/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-declare-tests" -version = "7.3.0-rc.1" +version = "7.3.0" authors = ["Jake Lang "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" diff --git a/bindings/rust/evmc-declare/Cargo.toml b/bindings/rust/evmc-declare/Cargo.toml index c1728778f..d281bbb9c 100644 --- a/bindings/rust/evmc-declare/Cargo.toml +++ b/bindings/rust/evmc-declare/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-declare" -version = "7.3.0-rc.1" +version = "7.3.0" authors = ["Jake Lang ", "Alex Beregszaszi "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" @@ -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.3.0-rc.1" } +evmc-vm = { path = "../evmc-vm", version = "7.3.0" } [lib] proc-macro = true diff --git a/bindings/rust/evmc-sys/Cargo.toml b/bindings/rust/evmc-sys/Cargo.toml index dcafc6a44..413bf7985 100644 --- a/bindings/rust/evmc-sys/Cargo.toml +++ b/bindings/rust/evmc-sys/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-sys" -version = "7.3.0-rc.1" +version = "7.3.0" authors = ["Alex Beregszaszi "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" diff --git a/bindings/rust/evmc-vm/Cargo.toml b/bindings/rust/evmc-vm/Cargo.toml index 6babeb4fe..16d6bda26 100644 --- a/bindings/rust/evmc-vm/Cargo.toml +++ b/bindings/rust/evmc-vm/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-vm" -version = "7.3.0-rc.1" +version = "7.3.0" authors = ["Alex Beregszaszi ", "Jake Lang "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" @@ -12,4 +12,4 @@ description = "Bindings to EVMC (VM specific)" edition = "2018" [dependencies] -evmc-sys = { path = "../evmc-sys", version = "7.3.0-rc.1" } +evmc-sys = { path = "../evmc-sys", version = "7.3.0" }