Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: prepare release for v1.1.1 #362

Merged
merged 3 commits into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.1.1
This release introduces the Pampas upgrade to the mainnet.

Features:
* [#360](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/360) feat: enable Pampas hardfork to mainnet

## v1.1.0
This release introduces the Pampas upgrade and contains 8 new features.

Expand Down
3 changes: 3 additions & 0 deletions types/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ const (

// Pampas is the upgrade name for Pampas upgrade
Pampas = "Pampas"

// Eddystone is the upgrade name for Eddystone upgrade
Eddystone = "Eddystone"
)
7 changes: 7 additions & 0 deletions x/upgrade/types/upgrade_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ const (

// Pampas is the upgrade name for Pampas upgrade
Pampas = types.Pampas

// Eddystone is the upgrade name for Eddystone upgrade
Eddystone = types.Eddystone
)

// The default upgrade config for networks
Expand All @@ -24,6 +27,10 @@ var (
Name: Nagqu,
Height: 1,
Info: "Nagqu hardfork",
}).SetPlan(&Plan{
Name: Pampas,
Height: 2006197,
Info: "Pampas hardfork",
})

TestnetChainID = "greenfield_5600-1"
Expand Down
Loading