From 5d8657380596d6ec9d81d6b08de381ff13c3cfa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Thu, 21 Dec 2023 23:08:56 +0100 Subject: [PATCH] evmone 0.11.0 Bump version: 0.11.0-dev -> 0.11.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 6bddeda9c4..54b6bd2b5d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.0-dev +current_version = 0.11.0 tag = True sign_tags = True tag_message = evmone {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 461d625f4b..7ddc0ab460 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.11.0] — unreleased +## [0.11.0] — 2023-12-21 This release is focused on [Cancun] and EOF. @@ -613,7 +613,7 @@ It delivers fully-compatible and high-speed EVM implementation. - Exposes [EVMC] 6 ABI. - The [intx 0.2.0](https://github.com/chfast/intx/releases/tag/v0.2.0) library is used for 256-bit precision arithmetic. -[0.11.0]: https://github.com/ethereum/evmone/compare/v0.10.0..master +[0.11.0]: https://github.com/ethereum/evmone/releases/tag/v0.11.0 [0.10.0]: https://github.com/ethereum/evmone/releases/tag/v0.10.0 [0.9.1]: https://github.com/ethereum/evmone/releases/tag/v0.9.1 [0.9.0]: https://github.com/ethereum/evmone/releases/tag/v0.9.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index cc521b4540..e2949ad698 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.11.0-dev) +set(PROJECT_VERSION 0.11.0) string(REGEX MATCH "([0-9]+)\\.([0-9]+)" _ ${PROJECT_VERSION}) set(PROJECT_VERSION_MAJOR ${CMAKE_MATCH_1})