Skip to content

Commit

Permalink
version v25.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec committed Jan 28, 2025
1 parent 5d26134 commit 05530f2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
2024-01-28 v25.1.0
==================

Nimbus `v25.1.0` is a `medium-urgency` release with a gas limit increase, along with beacon API and security fixes.

### Improvements

* Increase builder API default gas limit to 36M:
https://github.com/status-im/nimbus-eth2/pull/6763

### Fixes

* With multiple execution clients, wait for valid block response before concluding block is not valid:
https://github.com/status-im/nimbus-eth2/pull/6812

* Fix Docker image regression from v24.11.0 which could prevent starting beacon node:
https://github.com/status-im/nimbus-eth2/pull/6803

* Fix validator voluntary exiting given potential discrepancies about future fork scheduling:
https://github.com/status-im/nimbus-eth2/pull/6811

* Fix `sync_aggregate` value in `getBlockRewards` beacon API endpoint:
https://github.com/status-im/nimbus-eth2/pull/6829

* Fix `last_seen_p2p_address` value in `getPeers` beacon API endpoint:
https://github.com/status-im/nimbus-eth2/pull/6595

2024-12-12 v24.12.0
===================

Expand Down
6 changes: 3 additions & 3 deletions beacon_chain/version.nim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# beacon_chain
# Copyright (c) 2018-2024 Status Research & Development GmbH
# Copyright (c) 2018-2025 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
Expand All @@ -17,8 +17,8 @@ const
copyrights* =
"Copyright (c) 2019-" & compileYear & " Status Research & Development GmbH"

versionMajor* = 24
versionMinor* = 12
versionMajor* = 25
versionMinor* = 1
versionBuild* = 0

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

0 comments on commit 05530f2

Please sign in to comment.