Skip to content

Commit b8e54d6

Browse files
authored
Merge pull request #435 from bane-labs/rel-0.3.2
Release v0.3.1
2 parents 40144e7 + d666ca7 commit b8e54d6

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

33
This document outlines major changes between releases.
44

5+
## 0.3.1 "Zonation" (11 Mar 2025)
6+
7+
This patch-release introduces `NeoXDKG` fork on Testnet and contains a couple of minor
8+
improvements compatible with v0.3.0 version.
9+
10+
Please, follow the notes to upgrade your node from v0.3.0 to v0.3.1:
11+
1. Download new binary and new genesis configuration file from the release page.
12+
2. Gracefully stop the node.
13+
3. Replace the old binary with the new binary.
14+
4. Don't remove DB. Reinitialize DB using new binary and new configuration file for the
15+
corresponding network with the following command:
16+
```
17+
./geth init --datadir ./node-datadir ./config/genesis.json
18+
```
19+
5. If you're running a consensus node, ensure that `--antimev.password` flag is provided
20+
to the node's runner script and the node has access to its anti-MEV keystore. Also,
21+
ensure that you've registered your node's anti-MEV public key in the KeyManagement
22+
contract.
23+
6. Start the node.
24+
25+
Behaviour changes:
26+
* `NeoXDKG` fork is enabled at height `1990080` of Testnet (#434)
27+
28+
Improvements:
29+
* anti-MEV related documentation upgrade (#430)
30+
* anti-MEV public key is required to register new candidate via Governance contract (#433)
31+
32+
Bugs fixed:
33+
* encrypted transaction fee wasn't checked at the consensus/state DB level (#431)
34+
* Governance contract wasn't allow to register a candidate (#433)
35+
536
## 0.3.0 "Elation" (27 Feb 2025)
637

738
This version introduces support for two major features: anti-MEV encrypted transactions

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
const (
2424
VersionMajor = 0 // Major version component of the current release
2525
VersionMinor = 3 // Minor version component of the current release
26-
VersionPatch = 0 // Patch version component of the current release
26+
VersionPatch = 1 // Patch version component of the current release
2727
VersionMeta = "stable" // Version metadata to append to the version string
2828
)
2929

0 commit comments

Comments
 (0)