diff --git a/CHANGELOG.md b/CHANGELOG.md index 1253849727..608567f7ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 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 + +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 {