File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed
Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
33This 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.
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 = 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.
You can’t perform that action at this time.
0 commit comments