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

docs: prepare for V1.2.0 release #366

Merged
merged 1 commit into from
Dec 6, 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## V1.2.0
This release introduce the Manchurian upgrade to the testnet.

Chores:
* [#365](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/365) chore: add xml marshal for Int type
* [#364](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/364) chore: add xml marshal for UInt type

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

Expand Down
4 changes: 2 additions & 2 deletions types/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ const (
// Pampas is the upgrade name for Pampas upgrade
Pampas = "Pampas"

// Eddystone is the upgrade name for Eddystone upgrade
Eddystone = "Eddystone"
// Manchurian is the upgrade name for Manchurian upgrade
Manchurian = "Manchurian"
)
4 changes: 2 additions & 2 deletions x/upgrade/types/upgrade_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const (
// Pampas is the upgrade name for Pampas upgrade
Pampas = types.Pampas

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

// The default upgrade config for networks
Expand Down
Loading