From 6987a50596c62f73364413ecb642b4f5e99ae3f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Thu, 25 Apr 2019 08:56:20 +0200 Subject: [PATCH] EVMC 6.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version: 6.2.0-dev → 6.2.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- bindings/rust/evmc-sys/Cargo.toml | 2 +- bindings/rust/evmc-vm/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ab99c107d..c4ca271e9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.2.0-dev +current_version = 6.2.0 tag = True commit = True message = EVMC {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index ae5aa89f8..a9d6433c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [6.2.0] - Unreleased +## [6.2.0] - 2019-04-25 - Added: [[#216](https://github.com/ethereum/evmc/pull/216)] CMake option `EVMC_TEST_TOOLS` to build evmc-vmtester without bothering with internal unit tests. @@ -143,7 +143,7 @@ Constantinople: Storage status is reported back from `evmc_set_storage()`. -[6.2.0]: https://github.com/ethereum/evmc/compare/v6.1.1...master +[6.2.0]: https://github.com/ethereum/evmc/releases/tag/v6.2.0 [6.1.1]: https://github.com/ethereum/evmc/releases/tag/v6.1.1 [6.1.0]: https://github.com/ethereum/evmc/releases/tag/v6.1.0 [6.0.2]: https://github.com/ethereum/evmc/releases/tag/v6.0.2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 340261ef6..cdeaba9be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,7 @@ endif() cable_configure_toolchain(DEFAULT cxx11-pic) project(evmc) -set(PROJECT_VERSION 6.2.0-dev) +set(PROJECT_VERSION 6.2.0) cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release) diff --git a/bindings/rust/evmc-sys/Cargo.toml b/bindings/rust/evmc-sys/Cargo.toml index abcba9a20..1a10a97ae 100644 --- a/bindings/rust/evmc-sys/Cargo.toml +++ b/bindings/rust/evmc-sys/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-sys" -version = "6.2.0-dev" +version = "6.2.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 d90a8ebe6..ca2a8df51 100644 --- a/bindings/rust/evmc-vm/Cargo.toml +++ b/bindings/rust/evmc-vm/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-vm" -version = "6.2.0-dev" +version = "6.2.0" authors = ["Alex Beregszaszi "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc"