File tree Expand file tree Collapse file tree 2 files changed +22
-4
lines changed
Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 22
33This document outlines major changes between releases.
44
5+ ## 0.2.2 "Disjunction" (21 Aug 2024)
6+
7+ Another v0.2.0 compatible version of Neo X node that includes Geth update to v1.13.15
8+ and a set of bugfixes critical for both MainNet and T4 TestNet functioning.
9+
10+ Node operators should update the binary for both T4 and MainNet nodes, no DB resync
11+ is needed.
12+
13+ Improvements:
14+ * base Geth source code is updated to v1.13.15 (#232 )
15+
16+ Bug fixed:
17+ * panic during ` PREVRANDAO ` opcode handling (#289 )
18+ * duplicated transactions requests are sending by dBFT (#292 )
19+ * transaction receipts carrying non-canonical block hash (#232 )
20+ * race in sealed block submission to miner (#302 )
21+ * frequent peer disconnections due to invalid extensible dBFT payload sender (#298 )
22+
523## 0.2.1 "Graphitization" (24 Jul 2024)
624
725A patch version compatible with v0.2.0 release of Neo X node that brings a set of
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 = 2 // 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 = 2 // 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