Skip to content

Commit ba80179

Browse files
authored
Merge pull request #180 from bane-labs/rel-0.1.1
2 parents 9ffc8c9 + c3b37af commit ba80179

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,21 @@
22

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

721
Initial long-term supported node version including dBFT consensus engine integration with
822
single-block state finality and two-blocks hash finality based on the v1.13.11 Geth

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

0 commit comments

Comments
 (0)