From cc3efcc2617bb5e6bb792ac01d6657567c58932b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Tue, 3 Aug 2021 15:26:31 +0200 Subject: [PATCH] evmone 0.8.1 Bump version: 0.8.0 -> 0.8.1 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f662b2165d..c2026b9340 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.0 +current_version = 0.8.1 tag = True sign_tags = True tag_message = evmone {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index a1bac4c748..f2e3fa98fd 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.8.1] — unreleased +## [0.8.1] — 2021-08-03 ### Fixed @@ -273,7 +273,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.8.1]: https://github.com/ethereum/evmone/compare/v0.8.0..release/v0.8.0 +[0.8.1]: https://github.com/ethereum/evmone/releases/tag/v0.8.1 [0.8.0]: https://github.com/ethereum/evmone/releases/tag/v0.8.0 [0.7.0]: https://github.com/ethereum/evmone/releases/tag/v0.7.0 [0.6.0]: https://github.com/ethereum/evmone/releases/tag/v0.6.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index a5ce750137..305a569c4e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release Debug) include(Hunter/init) project(evmone LANGUAGES CXX C) -set(PROJECT_VERSION 0.8.0) +set(PROJECT_VERSION 0.8.1) string(REGEX MATCH "([0-9]+)\\.([0-9]+)" _ ${PROJECT_VERSION}) set(PROJECT_VERSION_MAJOR ${CMAKE_MATCH_1})