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 for release 1.3.0 #377

Merged
merged 3 commits into from
Jan 2, 2024
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
60 changes: 0 additions & 60 deletions .github/labeler.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/labeler.yml

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v1.3.0
This release introduces the Hulunbeier upgrade.

Features:
* [#368](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/368) feat: introduce the Hulunbeier upgrade
* [#376](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/376) feat: introduces hulunbeierPatch upgrade

## v1.2.1
This release changes the Manchurian upgrade height of testnet.

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

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

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

HulunbeierPatch = "HulunbeierPatch"
)
5 changes: 5 additions & 0 deletions x/upgrade/types/upgrade_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ const (

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

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

HulunbeierPatch = types.HulunbeierPatch
)

// The default upgrade config for networks
Expand Down
Loading