Skip to content

Commit 1ea6f87

Browse files
committed
version v0.2.1
1 parent 6720a0e commit 1ea6f87

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2025-09-26 v0.2.1
2+
=================
3+
4+
The Nimbus EL `v0.2.1` alpha is a `high-urgency` release for the Hoodi, Sepolia, and Holesky testnets, due to their impending Fusaka forks. There are no Verified Proxy changes since `v0.2.0`.
5+
6+
### Improvements
7+
8+
- Improve block processing speed by 6x:
9+
https://github.com/status-im/nimbus-eth1/pull/3717
10+
11+
- Support stateless block execution:
12+
https://github.com/status-im/nimbus-eth1/pull/3683
13+
14+
- Improve precompile error-related logging:
15+
https://github.com/status-im/nimbus-eth1/pull/3718
16+
17+
### Fixes
18+
19+
- Prevent potential database corruption:
20+
https://github.com/status-im/nimbus-eth1/pull/3705
21+
22+
- Fix crash relating to shutting down while syncing:
23+
https://github.com/status-im/nimbus-eth1/pull/3695

execution_chain/version.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# This file may not be copied, modified, or distributed except according to
77
# those terms.
88

9-
{.push raises: [].}
9+
{.push raises: [], gcsafe.}
1010

1111
#------------------------------------------------------------------------------
1212
# The only place where NimbusVersion is declared.
@@ -23,7 +23,7 @@ const
2323
NimbusMinor* = 2
2424
## is the minor number of Nimbus' version.
2525

26-
NimbusPatch* = 0
26+
NimbusPatch* = 1
2727
## is the patch number of Nimbus' version.
2828

2929
NimbusVersion* = $NimbusMajor & "." & $NimbusMinor & "." & $NimbusPatch

nimbus.nimble

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
mode = ScriptMode.Verbose
99

1010
packageName = "nimbus"
11-
version = "0.2.0"
11+
version = "0.2.1"
1212
author = "Status Research & Development GmbH"
1313
description = "An Ethereum 2.0 Sharding Client for Resource-Restricted Devices"
1414
license = "Apache License 2.0"
1515
skipDirs = @["tests", "examples"]
1616
# we can't have the result of a custom task in the "bin" var - https://github.com/nim-lang/nimble/issues/542
1717
# bin = @["build/nimbus"]
1818

19-
requires "nim >= 2.2.0",
19+
requires "nim >= 2.2.4",
2020
"bncurve",
2121
"chronicles",
2222
"chronos",

0 commit comments

Comments
 (0)