From b71cb0adafda115ca87b3fe35984f347a458a8e5 Mon Sep 17 00:00:00 2001 From: dylanhuang Date: Tue, 12 Sep 2023 13:56:50 +0800 Subject: [PATCH 1/2] feat: enable Nagqu hardfork to testnet (#306) * feat: enable Nagqu hardfork to testnet * docs: update change log --- CHANGELOG.md | 9 +++++++++ x/upgrade/types/upgrade_config.go | 11 +++++------ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1253849727..5488b88da8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.2.5 +This release includes all the changes in the v0.2.5 alpha versions. +Features: +* [#277](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/277) feat: restrict token transfers to payment accounts +* [#306](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/306) feat: enable Nagqu hardfork to testnet + +Chores: +* [#300](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/300) chore: add hardfork logic for Nagqu + ## v0.2.5-alpha.1 This release includes 1 feature and 1 chore. diff --git a/x/upgrade/types/upgrade_config.go b/x/upgrade/types/upgrade_config.go index 742585bccd..659e1c72c1 100644 --- a/x/upgrade/types/upgrade_config.go +++ b/x/upgrade/types/upgrade_config.go @@ -17,12 +17,11 @@ const ( // The default upgrade config for networks var ( TestnetChainID = "greenfield_5600-1" - TestnetConfig = NewUpgradeConfig() - // .SetPlan(&Plan{ - // Name: EnablePublicDelegationUpgrade, - // Height: 100, - // Info: "Enable public delegation", - // }) + TestnetConfig = NewUpgradeConfig().SetPlan(&Plan{ + Name: Nagqu, + Height: 471350, + Info: "Nagqu hardfork", + }) ) func NewUpgradeConfig() *UpgradeConfig { From 3edf7ebcea5563ab9fb7a48acf92e41507df5a08 Mon Sep 17 00:00:00 2001 From: randyahx <62416962+randyahx@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:20:19 +0800 Subject: [PATCH 2/2] release: draft release for v0.2.5 (#308) * Update CHANGELOG.md * Update CHANGELOG.md --- CHANGELOG.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5488b88da8..608567f7ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ # Changelog -## v0.2.5 -This release includes all the changes in the v0.2.5 alpha versions. +## v0.2.5 + +This release includes all the changes in the v0.2.5 alpha versions and 1 new feature. + Features: +* [#306](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/306) feat: enable Nagqu hardfork to testnet * [#277](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/277) feat: restrict token transfers to payment accounts -* [#306](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/306) feat: enable Nagqu hardfork to testnet Chores: * [#300](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/300) chore: add hardfork logic for Nagqu