From f4c04ee650838d2cda5c8356370d31ad935f1212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Tue, 30 Aug 2022 17:25:41 +0200 Subject: [PATCH] evmone 0.9.0 Bump version: 0.9.0-dev -> 0.9.0 --- .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 1f91db8d66..fab96cd544 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0-dev +current_version = 0.9.0 tag = True sign_tags = True tag_message = evmone {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index f91bbd220e..53d797c92b 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.9.0] — unreleased +## [0.9.0] — 2022-08-30 In this release we have been focused on improving performance of the Baseline interpreter. The end result is that the Baseline is **26% faster** than in previous version 0.8.0 @@ -347,7 +347,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.9.0]: https://github.com/ethereum/evmone/compare/v0.8.2..master +[0.9.0]: https://github.com/ethereum/evmone/releases/tag/v0.9.0 [0.8.2]: https://github.com/ethereum/evmone/releases/tag/v0.8.2 [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 diff --git a/CMakeLists.txt b/CMakeLists.txt index a9bb7f4593..ede8035e56 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.9.0-dev) +set(PROJECT_VERSION 0.9.0) string(REGEX MATCH "([0-9]+)\\.([0-9]+)" _ ${PROJECT_VERSION}) set(PROJECT_VERSION_MAJOR ${CMAKE_MATCH_1})