Skip to content

Commit 1cf3324

Browse files
authored
Merge pull request #440 from bane-labs/rel-0.3.2
CHANGELOG: release v0.3.2
2 parents c2d26e7 + 462e45f commit 1cf3324

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

CHANGELOG.md

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

33
This document outlines major changes between releases.
44

5+
## 0.3.2 "Ionization" (20 Mar 2025)
6+
7+
This is an urgent patch-release fixing a panic happened on primary CN during decrypted
8+
transaction verification. This version is compatible with v0.3.1 and does not require
9+
DB resync or configuration update on upgrade.
10+
11+
Behaviour changes:
12+
* `NeoXAMEV` fork is enabled at height `2088000` of Testnet (#437)
13+
14+
Bugs fixed:
15+
* decrypted transaction can't be verified at primary node due to panic (#439)
16+
517
## 0.3.1 "Zonation" (11 Mar 2025)
618

719
This patch-release introduces `NeoXDKG` fork on Testnet and contains a couple of minor

params/version.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
)
2222

2323
const (
24-
VersionMajor = 0 // Major version component of the current release
25-
VersionMinor = 3 // Minor version component of the current release
26-
VersionPatch = 2 // Patch version component of the current release
27-
VersionMeta = "unstable" // Version metadata to append to the version string
24+
VersionMajor = 0 // Major version component of the current release
25+
VersionMinor = 3 // Minor version component of the current release
26+
VersionPatch = 2 // Patch version component of the current release
27+
VersionMeta = "stable" // Version metadata to append to the version string
2828
)
2929

3030
// Version holds the textual version string.

0 commit comments

Comments
 (0)