Skip to content

Commit 3186982

Browse files
committed
evmone 0.14.1
Bump version: 0.14.0 -> 0.14.1
1 parent f9f8d51 commit 3186982

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.14.0
2+
current_version = 0.14.1
33
tag = True
44
sign_tags = True
55
tag_message = evmone {new_version}

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ Documentation of all notable changes to the **evmone** project.
55
The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

8+
[0.14.1] — 2025-03-11
9+
10+
### Fixed
11+
12+
- Fixes and improvements to BLS precompiles ([EIP-2537]).
13+
[#1155](https://github.com/ethereum/evmone/pull/1155)
14+
[#1154](https://github.com/ethereum/evmone/pull/1154)
15+
[#1150](https://github.com/ethereum/evmone/pull/1150)
16+
[#1151](https://github.com/ethereum/evmone/pull/1151)
17+
[#1148](https://github.com/ethereum/evmone/pull/1148)
18+
- Check for topic when parsing deposit contract logs ([EIP-6110]).
19+
[#1152](https://github.com/ethereum/evmone/pull/1152)
20+
21+
### Changed
22+
23+
- Improvements to EOF validation.
24+
[#1137](https://github.com/ethereum/evmone/pull/1137)
25+
[#1144](https://github.com/ethereum/evmone/pull/1144)
26+
[#1145](https://github.com/ethereum/evmone/pull/1145)
27+
28+
829
[0.14.0] — 2025-02-19
930

1031
### Added
@@ -911,6 +932,7 @@ It delivers fully-compatible and high-speed EVM implementation.
911932
- Exposes [EVMC] 6 ABI.
912933
- The [intx 0.2.0](https://github.com/chfast/intx/releases/tag/v0.2.0) library is used for 256-bit precision arithmetic.
913934

935+
[0.14.1]: https://github.com/ethereum/evmone/releases/tag/v0.14.1
914936
[0.14.0]: https://github.com/ethereum/evmone/releases/tag/v0.14.0
915937
[0.13.0]: https://github.com/ethereum/evmone/releases/tag/v0.13.0
916938
[0.12.0]: https://github.com/ethereum/evmone/releases/tag/v0.12.0

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release Debug)
2525
include(Hunter/init)
2626

2727
project(evmone LANGUAGES CXX C)
28-
set(PROJECT_VERSION 0.14.0)
28+
set(PROJECT_VERSION 0.14.1)
2929

3030
string(REGEX MATCH "([0-9]+)\\.([0-9]+)" _ ${PROJECT_VERSION})
3131
set(PROJECT_VERSION_MAJOR ${CMAKE_MATCH_1})

0 commit comments

Comments
 (0)