diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 63902ad95d..c137001d4d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0-dev +current_version = 0.10.0 tag = True sign_tags = True tag_message = evmone {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dc2d90672..4dff642d83 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.10.0] — unreleased +## [0.10.0] — 2023-05-08 The highlights of this release are support for [Shanghai] execution specification upgrade and implementation of EOF "v1.0". There are also big enhancements to the EVM testing tools @@ -489,7 +489,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.10.0]: https://github.com/ethereum/evmone/compare/v0.9.1..master +[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 [0.8.2]: https://github.com/ethereum/evmone/releases/tag/v0.8.2 diff --git a/CMakeLists.txt b/CMakeLists.txt index 3bbf15a606..817035d272 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.10.0-dev) +set(PROJECT_VERSION 0.10.0) string(REGEX MATCH "([0-9]+)\\.([0-9]+)" _ ${PROJECT_VERSION}) set(PROJECT_VERSION_MAJOR ${CMAKE_MATCH_1})