Skip to content

Commit 786aacb

Browse files
committed
version v0.2.2
1 parent 352a8cc commit 786aacb

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
2025-11-03 v0.2.2
2+
=================
3+
4+
The Nimbus EL `v0.2.2` alpha is a `high-urgency` release for the impending Fusaka fork and `low-urgency` for the Hoodi and Sepolia testnets.
5+
6+
### Improvements
7+
8+
- Improve performance of certain addition, multiplication, and pairing precompiles by 80+%:
9+
https://github.com/status-im/nimbus-eth1/pull/3747
10+
11+
- Dynamically adjust block persistence batch sizes to safely maximize throughput:
12+
https://github.com/status-im/nimbus-eth1/pull/3750
13+
14+
- Optimize Portal database pruning performance by 150x:
15+
https://github.com/status-im/nimbus-eth1/pull/3753
16+
17+
- Optimize Osaka modExpFee calculation:
18+
https://github.com/status-im/nimbus-eth1/pull/3784
19+
20+
- Add support for runtime ChainId in Portal ENR field:
21+
https://github.com/status-im/nimbus-eth1/pull/3749
22+
23+
### Fixes
24+
25+
- Fix segfault when processing bad block:
26+
https://github.com/status-im/nimbus-eth1/pull/3733
27+
28+
- Fix crash while syncing:
29+
https://github.com/status-im/nimbus-eth1/pull/3751
30+
31+
- Fix segfault when database directory is locked or in use:
32+
https://github.com/status-im/nimbus-eth1/pull/3736
33+
34+
- Fix secp256r1 verification in certain cases:
35+
https://github.com/status-im/nimbus-eth1/pull/3759
36+
37+
- Fix forkId compatibility according to EIP-2124 and EIP-6122:
38+
https://github.com/status-im/nimbus-eth1/pull/3803
39+
40+
- Fix Portal bridge crash when JSON-RPC methods not available:
41+
https://github.com/status-im/nimbus-eth1/pull/3785
42+
43+
- Fix out-of-order execution client launch logging:
44+
https://github.com/status-im/nimbus-eth1/pull/3728
45+
146
2025-09-26 v0.2.1
247
=================
348

execution_chain/version.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const
2323
NimbusMinor* = 2
2424
## is the minor number of Nimbus' version.
2525

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

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

nimbus.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
mode = ScriptMode.Verbose
99

1010
packageName = "nimbus"
11-
version = "0.2.1"
11+
version = "0.2.2"
1212
author = "Status Research & Development GmbH"
1313
description = "An Ethereum 2.0 Sharding Client for Resource-Restricted Devices"
1414
license = "Apache License 2.0"

0 commit comments

Comments
 (0)