Skip to content

Commit 52db86a

Browse files
authored
Merge pull request #170 from bane-labs/rel-0.1.0
CHANGELOG: release 0.1.0
2 parents 86f478e + a324828 commit 52db86a

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
11
# Changelog
22

33
This document outlines major changes between releases.
4+
5+
## 0.1.0 Attraction (16 April 2024)
6+
7+
Initial long-term supported node version including dBFT consensus engine integration with
8+
single-block state finality and two-blocks hash finality based on the v1.13.11 Geth
9+
implementation. Also includes the set of system contracts implemented: Policy, Governance
10+
and Bridge with related dependent contracts and relevant node integration logic. This version
11+
mostly focuses on the P2P protocol and storage scheme stabilization, system contracts
12+
implementation and dBFT consensus layer integration. It also includes bug fixes critical for
13+
the node functioning and consensus liveness.
14+
15+
This version is aimed to be launched in Neo X T3 testnet and be supported for the whole
16+
T3 lifetime with possible minor patches and non-breaking upgrades. Node operators may
17+
use genesis configuration file located at `config/genesis_testnet.json` to run
18+
T3 node.

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 = 0 // 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 = 0 // 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)