File tree Expand file tree Collapse file tree 2 files changed +19
-5
lines changed
Expand file tree Collapse file tree 2 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 22
33This document outlines major changes between releases.
44
5- ## 0.1.0 Attraction (16 April 2024)
5+ ## 0.1.1 "Backdating" (18 April 2024)
6+
7+ An urgent patch release to fix the bug in T3 genesis configuration file introduced in 0.1.0.
8+ Also contains a fix of the bug preventing stale consensus node from continuous state sync
9+ process.
10+
11+ Please, note that this release contains T3 genesis configuration file changes and thus,
12+ incompatible with 0.1.0 version. Node operators should regenerate genesis block based on
13+ the updated configuration if upgrading from 0.1.0 version.
14+
15+ Bugs fixed:
16+ * missing initial balance for Bridge relayer in T3 genesis configuration (#174 )
17+ * consensus node lock possible during the state sync process for stale nodes (#176 )
18+
19+ ## 0.1.0 "Attraction" (16 April 2024)
620
721Initial long-term supported node version including dBFT consensus engine integration with
822single-block state finality and two-blocks hash finality based on the v1.13.11 Geth
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 = 1 // Minor version component of the current release
26- VersionPatch = 1 // 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 = 1 // Minor version component of the current release
26+ VersionPatch = 1 // 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