Skip to content

Commit 6f413cc

Browse files
committed
version v25.9.1
1 parent 2a57434 commit 6f413cc

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
2025-09-25 v25.9.1
2+
==================
3+
4+
Nimbus `v25.9.1` is a `low-urgency` release for mainnet and `high-urgency` release for the Hoodi, Sepolia, and Holesky testnets, due to impending Fusaka forks on each.
5+
6+
### Improvements
7+
8+
- Provide execution clients more time in certain circumstances to prepare payloads:
9+
https://github.com/status-im/nimbus-eth2/pull/7457
10+
11+
- Include BLS to execution changes under more situations in blocks:
12+
https://github.com/status-im/nimbus-eth2/pull/7506
13+
14+
- Update the validator client to use non-deprecated publishBlockV2 pre-Electra:
15+
https://github.com/status-im/nimbus-eth2/pull/7438
16+
17+
### Fixes
18+
19+
- Fix sync sometimes getting stuck:
20+
https://github.com/status-im/nimbus-eth2/pull/7491
21+
22+
- Provide proper CORS headers for beacon API:
23+
https://github.com/status-im/nimbus-eth2/pull/7473
24+
25+
- Enable building on non-macOS ARM platforms:
26+
https://github.com/status-im/nimbus-eth2/pull/7465
27+
128
2025-09-02 v25.9.0
229
==================
330

beacon_chain/version.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
66
# at your option. This file may not be copied, modified, or distributed except according to those terms.
77

8-
{.push raises: [].}
8+
{.push raises: [], gcsafe.}
99

1010
## This module implements the version tagging details of all binaries included
1111
## in the Nimbus release process (i.e. beacon_node, validator_client, etc)
@@ -15,7 +15,7 @@ import std/[os, strutils], metrics, ./buildinfo
1515
const
1616
versionMajor* = 25
1717
versionMinor* = 9
18-
versionBuild* = 0
18+
versionBuild* = 1
1919

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

0 commit comments

Comments
 (0)