Skip to content

Commit 05530f2

Browse files
committed
version v25.1.0
1 parent 5d26134 commit 05530f2

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
2024-01-28 v25.1.0
2+
==================
3+
4+
Nimbus `v25.1.0` is a `medium-urgency` release with a gas limit increase, along with beacon API and security fixes.
5+
6+
### Improvements
7+
8+
* Increase builder API default gas limit to 36M:
9+
https://github.com/status-im/nimbus-eth2/pull/6763
10+
11+
### Fixes
12+
13+
* With multiple execution clients, wait for valid block response before concluding block is not valid:
14+
https://github.com/status-im/nimbus-eth2/pull/6812
15+
16+
* Fix Docker image regression from v24.11.0 which could prevent starting beacon node:
17+
https://github.com/status-im/nimbus-eth2/pull/6803
18+
19+
* Fix validator voluntary exiting given potential discrepancies about future fork scheduling:
20+
https://github.com/status-im/nimbus-eth2/pull/6811
21+
22+
* Fix `sync_aggregate` value in `getBlockRewards` beacon API endpoint:
23+
https://github.com/status-im/nimbus-eth2/pull/6829
24+
25+
* Fix `last_seen_p2p_address` value in `getPeers` beacon API endpoint:
26+
https://github.com/status-im/nimbus-eth2/pull/6595
27+
128
2024-12-12 v24.12.0
229
===================
330

beacon_chain/version.nim

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# beacon_chain
2-
# Copyright (c) 2018-2024 Status Research & Development GmbH
2+
# Copyright (c) 2018-2025 Status Research & Development GmbH
33
# Licensed and distributed under either of
44
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
@@ -17,8 +17,8 @@ const
1717
copyrights* =
1818
"Copyright (c) 2019-" & compileYear & " Status Research & Development GmbH"
1919

20-
versionMajor* = 24
21-
versionMinor* = 12
20+
versionMajor* = 25
21+
versionMinor* = 1
2222
versionBuild* = 0
2323

2424
versionBlob* = "stateofus" # Single word - ends up in the default graffiti

0 commit comments

Comments
 (0)