diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8fbf00d21f..66c812030f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0-dev +current_version = 0.2.0 tag = True sign_tags = True tag_message = evmone {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index aef817b7de..d60760cf1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ Documentation of all notable changes to the **evmone** project. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. -## [0.2.0] - unreleased +## [0.2.0] - 2019-09-24 This release of evmone is binary compatible with 0.1 and delivers big performance improvements – both code preprocessing and execution is **~66%** faster (needs ~40% less time). @@ -106,7 +106,7 @@ It delivers fully-compatible and high-speed EVM implementation. - The [intx 0.2.0](https://github.com/chfast/intx/releases/tag/v0.2.0) library is used for 256-bit precision arithmetic. -[0.2.0]: https://github.com/ethereum/evmone/compare/v0.1.0..master +[0.2.0]: https://github.com/ethereum/evmone/releases/tag/v0.2.0 [0.1.1]: https://github.com/ethereum/evmone/releases/tag/v0.1.1 [0.1.0]: https://github.com/ethereum/evmone/releases/tag/v0.1.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 57dfa363d8..5b2333a2b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release Debug) include(Hunter/init) project(evmone LANGUAGES CXX) -set(PROJECT_VERSION 0.2.0-dev) +set(PROJECT_VERSION 0.2.0) hunter_add_package(ethash) find_package(ethash CONFIG REQUIRED)