Skip to content

Commit d2de6b1

Browse files
committed
evmone 0.8.2
Bump version: 0.8.1 -> 0.8.2
1 parent 6c8a126 commit d2de6b1

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-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.8.1
2+
current_version = 0.8.2
33
tag = True
44
sign_tags = True
55
tag_message = evmone {new_version}

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

88

9+
## [0.8.2] — 2021-08-26
10+
11+
### Fixed
12+
13+
- Fixed building of `evmone-standalone` static library when the `llvm-ar` tool is being used.
14+
[#373](https://github.com/ethereum/evmone/pull/373)
15+
[#374](https://github.com/ethereum/evmone/pull/374)
16+
17+
918
## [0.8.1] — 2021-08-03
1019

1120
### Fixed
@@ -273,6 +282,7 @@ It delivers fully-compatible and high-speed EVM implementation.
273282
- The [intx 0.2.0](https://github.com/chfast/intx/releases/tag/v0.2.0) library is used for 256-bit precision arithmetic.
274283

275284

285+
[0.8.2]: https://github.com/ethereum/evmone/releases/tag/v0.8.2
276286
[0.8.1]: https://github.com/ethereum/evmone/releases/tag/v0.8.1
277287
[0.8.0]: https://github.com/ethereum/evmone/releases/tag/v0.8.0
278288
[0.7.0]: https://github.com/ethereum/evmone/releases/tag/v0.7.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.8.1)
28+
set(PROJECT_VERSION 0.8.2)
2929

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

0 commit comments

Comments
 (0)