From 7961b60012220bf25d15569acd18c68ced96473b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Mon, 23 Sep 2024 10:52:57 +0200 Subject: [PATCH] evmone 0.13.0 Bump version: 0.12.0 -> 0.13.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 d2ae9715f1..87e52f05ca 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.0 +current_version = 0.13.0 tag = True sign_tags = True tag_message = evmone {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 514f718611..ae61e0fa89 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.13.0] — unreleased +## [0.13.0] — 2024-09-23 This release adds BLS precompiles and a system contract for [Prague] and improves the interpreter API. @@ -841,7 +841,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.13.0]: https://github.com/ethereum/evmone/compare/v0.12.0..master +[0.13.0]: https://github.com/ethereum/evmone/releases/tag/v0.13.0 [0.12.0]: https://github.com/ethereum/evmone/releases/tag/v0.12.0 [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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 7247996f28..36fcf461fb 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.12.0) +set(PROJECT_VERSION 0.13.0) string(REGEX MATCH "([0-9]+)\\.([0-9]+)" _ ${PROJECT_VERSION}) set(PROJECT_VERSION_MAJOR ${CMAKE_MATCH_1})