Skip to content

Commit 0ee4307

Browse files
authored
Merge pull request #303 from bane-labs/rel-0.2.2
Release v0.2.2
2 parents 547b4c7 + 35023bd commit 0ee4307

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

CHANGELOG.md

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

33
This 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

725
A patch version compatible with v0.2.0 release of Neo X node that brings a set of

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 = 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.

0 commit comments

Comments
 (0)