Skip to content

Commit

Permalink
chore: release v4.3.0 (#983)
Browse files Browse the repository at this point in the history
## Description

Closes: #XXXX

<!-- Add a description of the changes that this PR introduces and the files that
are the most critical to review. -->

---

### Author Checklist

*All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.*

I have...

- [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#pr-targeting))
- [ ] provided a link to the relevant issue or specification
- [ ] followed the guidelines for [building modules](https://docs.cosmos.network/v0.44/building-modules/intro.html)
- [x] included the necessary unit and integration [tests](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#testing)
- [x] added a changelog entry to `CHANGELOG.md`
- [ ] included comments for [documenting Go code](https://blog.golang.org/godoc)
- [ ] updated the relevant documentation or specification
- [x] reviewed "Files changed" and left comments if necessary
- [x] confirmed all CI checks have passed

### Reviewers Checklist

*All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.*

I have...

- [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] confirmed `!` in the type prefix if API or client breaking change
- [ ] confirmed all author checklist items have been addressed
- [ ] reviewed state machine logic
- [ ] reviewed API design and naming
- [ ] reviewed documentation is accurate
- [ ] reviewed tests and test coverage
- [ ] manually tested (if applicable)
  • Loading branch information
RiccardoM authored Jul 29, 2022
1 parent 48fc886 commit 581f6fc
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 19 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/on-chain-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
GENESIS_DESMOS_VERSION: "v4.1.0"
GENESIS_URL: "https://raw.githubusercontent.com/RiccardoM/desmos-states/master/morpheus-apollo-2-6608740.json"
UPGRADE_NAME: "v4.2.0"
UPGRADE_NAME: "v4.3.0"
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
-->
## Version 4.3.0
### Bug Fixes
#### Profiles
- ([\#980](https://github.com/desmos-labs/desmos/pull/980)) Added missing params migration

#### Subspaces
- ([\#981](https://github.com/desmos-labs/desmos/pull/981)) Added missing subspaces authorizations migration

#### Posts
- ([\#978](https://github.com/desmos-labs/desmos/pull/978)) Fixed the REST endpoints version

## Version 4.2.0
### Features
#### Profiles
Expand Down
2 changes: 2 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
v400 "github.com/desmos-labs/desmos/v4/app/upgrades/v400"
v410 "github.com/desmos-labs/desmos/v4/app/upgrades/v410"
v420 "github.com/desmos-labs/desmos/v4/app/upgrades/v420"
v430 "github.com/desmos-labs/desmos/v4/app/upgrades/v430"

profilesv4 "github.com/desmos-labs/desmos/v4/x/profiles/legacy/v4"

Expand Down Expand Up @@ -1067,6 +1068,7 @@ func (app *DesmosApp) registerUpgradeHandlers() {
app.registerUpgrade(v400.NewUpgrade(app.mm, app.configurator))
app.registerUpgrade(v410.NewUpgrade(app.mm, app.configurator))
app.registerUpgrade(v420.NewUpgrade(app.mm, app.configurator))
app.registerUpgrade(v430.NewUpgrade(app.mm, app.configurator))
}

// registerUpgrade registers the given upgrade to be supported by the app
Expand Down
46 changes: 46 additions & 0 deletions app/upgrades/v430/upgrade.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package v430

import (
storetypes "github.com/cosmos/cosmos-sdk/store/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

"github.com/desmos-labs/desmos/v4/app/upgrades"
)

var (
_ upgrades.Upgrade = &Upgrade{}
)

// Upgrade represents the v4.3.0 upgrade
type Upgrade struct {
mm *module.Manager
configurator module.Configurator
}

// NewUpgrade returns a new Upgrade instance
func NewUpgrade(mm *module.Manager, configurator module.Configurator) *Upgrade {
return &Upgrade{
mm: mm,
configurator: configurator,
}
}

// Name implements upgrades.Upgrade
func (u *Upgrade) Name() string {
return "v4.3.0"
}

// Handler implements upgrades.Upgrade
func (u *Upgrade) Handler() upgradetypes.UpgradeHandler {
return func(ctx sdk.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
// Do nothing here as we don't have anything particular in this update
return u.mm.RunMigrations(ctx, u.configurator, fromVM)
}
}

// StoreUpgrades implements upgrades.Upgrade
func (u *Upgrade) StoreUpgrades() *storetypes.StoreUpgrades {
return &storetypes.StoreUpgrades{}
}

0 comments on commit 581f6fc

Please sign in to comment.