From 66d8b1e669279ca3d5314428034dc8e75b86aaaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 1 Apr 2020 15:46:11 +0200 Subject: [PATCH] evmone 0.4.1 Bump version: 0.4.1-dev -> 0.4.1 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 3 ++- CMakeLists.txt | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7e8376ceae..e410d5923c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1-dev +current_version = 0.4.1 tag = True sign_tags = True tag_message = evmone {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 59bc545c92..52b435af08 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]. -## [0.4.1] — unreleased +## [0.4.1] — 2020-04-01 ### Fixed @@ -163,6 +163,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.4.1]: https://github.com/ethereum/evmone/releases/tag/v0.4.1 [0.4.0]: https://github.com/ethereum/evmone/releases/tag/v0.4.0 [0.3.0]: https://github.com/ethereum/evmone/releases/tag/v0.3.0 [0.2.0]: https://github.com/ethereum/evmone/releases/tag/v0.2.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cd3ff0ccb..4400808537 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.4.1-dev) +set(PROJECT_VERSION 0.4.1) string(REGEX MATCH "([0-9]+)\\.([0-9]+)" _ ${PROJECT_VERSION}) set(PROJECT_VERSION_MAJOR ${CMAKE_MATCH_1})