From 15a50684e74320b79152d4e5e21da69fbf226918 Mon Sep 17 00:00:00 2001 From: Alexxxxxx <118710506+alexgao001@users.noreply.github.com> Date: Mon, 29 Apr 2024 12:49:19 +0800 Subject: [PATCH] set up hardfork height and add CHANGELOG.md (#437) --- CHANGELOG.md | 10 ++++++++++ go.mod | 2 +- go.sum | 4 ++-- x/upgrade/types/upgrade_config.go | 8 ++++++++ 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1482ea00..fd25cc4a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## V1.7.0 +This release introduces the Erdos upgrade + +Features: +* [#417](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/417) feat: feat: add multi message support for greenfield crosschain app + +Fixes: +* [#422](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/422) fix: fix the deps security + + ## V1.6.0 This release introduces the Serengeti upgrade. diff --git a/go.mod b/go.mod index 12584a2fa..0cc9c426b 100644 --- a/go.mod +++ b/go.mod @@ -172,7 +172,7 @@ replace ( github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0 github.com/btcsuite/btcd => github.com/btcsuite/btcd v0.23.2 - github.com/cometbft/cometbft => github.com/bnb-chain/greenfield-cometbft v1.2.1-0.20240423054022-904c57ecf3ff + github.com/cometbft/cometbft => github.com/bnb-chain/greenfield-cometbft v1.3.0 github.com/cometbft/cometbft-db => github.com/bnb-chain/greenfield-cometbft-db v0.8.1-alpha.1 github.com/cosmos/iavl => github.com/bnb-chain/greenfield-iavl v0.20.1 diff --git a/go.sum b/go.sum index 784c9d289..8fd6f1b3a 100644 --- a/go.sum +++ b/go.sum @@ -228,8 +228,8 @@ github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816/go.mod h1:+zsy github.com/bkielbasa/cyclop v1.2.0/go.mod h1:qOI0yy6A7dYC4Zgsa72Ppm9kONl0RoIlPbzot9mhmeI= github.com/blizzy78/varnamelen v0.8.0/go.mod h1:V9TzQZ4fLJ1DSrjVDfl89H7aMnTvKkApdHeyESmyR7k= github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40/go.mod h1:8rLXio+WjiTceGBHIoTvn60HIbs7Hm7bcHjyrSqYB9c= -github.com/bnb-chain/greenfield-cometbft v1.2.1-0.20240423054022-904c57ecf3ff h1:ClDnN5TePzIrgpAAyZs6diPCXu1NqCeh93B8FtypQdg= -github.com/bnb-chain/greenfield-cometbft v1.2.1-0.20240423054022-904c57ecf3ff/go.mod h1:0D+VPivZTeBldjtGGi9LKbBnKEO/RtMRJikie92LkYI= +github.com/bnb-chain/greenfield-cometbft v1.3.0 h1:v3nZ16ledTZGF5Csys7fTQGZcEV78ZLUtptA9PLKMo4= +github.com/bnb-chain/greenfield-cometbft v1.3.0/go.mod h1:0D+VPivZTeBldjtGGi9LKbBnKEO/RtMRJikie92LkYI= github.com/bnb-chain/greenfield-cometbft-db v0.8.1-alpha.1 h1:XcWulGacHVRiSCx90Q8Y//ajOrLNBQWR/KDB89dy3cU= github.com/bnb-chain/greenfield-cometbft-db v0.8.1-alpha.1/go.mod h1:ey1CiK4bYo1RBNJLRiVbYr5CMdSxci9S/AZRINLtppI= github.com/bnb-chain/greenfield-iavl v0.20.1 h1:y3L64GU99otNp27/xLVBTDbv4eroR6CzoYz0rbaVotM= diff --git a/x/upgrade/types/upgrade_config.go b/x/upgrade/types/upgrade_config.go index 9babe36ff..5090590e3 100644 --- a/x/upgrade/types/upgrade_config.go +++ b/x/upgrade/types/upgrade_config.go @@ -72,6 +72,10 @@ var ( Name: Serengeti, Height: 6863285, Info: "Serengeti hardfork", + }).SetPlan(&Plan{ + Name: Erdos, + Height: 7627845, + Info: "Erdos hardfork", }) TestnetChainID = "greenfield_5600-1" @@ -107,6 +111,10 @@ var ( Name: Serengeti, Height: 7354695, Info: "Serengeti hardfork", + }).SetPlan(&Plan{ + Name: Erdos, + Height: 8086093, + Info: "Erdos hardfork", }) )