File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed
Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 22
33This 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
719This patch-release introduces ` NeoXDKG ` fork on Testnet and contains a couple of minor
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ import (
2121)
2222
2323const (
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.
You can’t perform that action at this time.
0 commit comments