Skip to content

Commit

Permalink
Mark v1.19.0-rc5 and rename umber-rc2 to umber-rc4. (#2091)
Browse files Browse the repository at this point in the history
* Change the umber-rc2 upgrade to umber-rc4 because that's what I accidentally submitted in the gov prop.

* Update changelog and mark v1.19.0-rc5
  • Loading branch information
SpicyLemon authored Jul 12, 2024
1 parent aa00c05 commit 7d6c507
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,21 @@ Ref: https://keepachangelog.com/en/1.0.0/

---

## [v1.19.0-rc5](https://github.com/provenance-io/provenance/releases/tag/v1.19.0-rc5) - 2024-07-12

### Full Commit History

* https://github.com/provenance-io/provenance/compare/v1.19.0-rc4...v1.19.0-rc5
* https://github.com/provenance-io/provenance/compare/v1.18.0...v1.19.0-rc5

---

### Bug Fixes

* Change the umber-rc2 upgrade to umber-rc4. [#2091](https://github.com/provenance-io/provenance/pull/2091).

---

## [v1.19.0-rc4](https://github.com/provenance-io/provenance/releases/tag/v1.19.0-rc4) - 2024-07-12

### Dependencies
Expand Down
9 changes: 9 additions & 0 deletions RELEASE_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [v1.19.0-rc5](https://github.com/provenance-io/provenance/releases/tag/v1.19.0-rc5) - 2024-07-12

### Full Commit History

* https://github.com/provenance-io/provenance/compare/v1.19.0-rc4...v1.19.0-rc5
* https://github.com/provenance-io/provenance/compare/v1.18.0...v1.19.0-rc5

---

## [v1.19.0-rc4](https://github.com/provenance-io/provenance/releases/tag/v1.19.0-rc4) - 2024-07-12

### Dependencies
Expand Down
4 changes: 3 additions & 1 deletion app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ var upgrades = map[string]appUpgrade{
return vm, nil
},
},
"umber-rc2": {}, // upgrade for v1.19.0-rc3
"umber-rc2": {}, // not used.
"umber-rc3": {}, // not used.
"umber-rc4": {}, // upgrade for v1.19.0-rc5
"umber": { // upgrade for v1.19.0
Added: []string{crisistypes.ModuleName, circuittypes.ModuleName, consensusparamtypes.ModuleName},
Deleted: []string{"reward"},
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ func (s *UpgradeTestSuite) TestUmberRC1() {
s.AssertUpgradeHandlerLogs("umber-rc1", expInLog, nil)
}

func (s *UpgradeTestSuite) TestUmberRC2() {
key := "umber-rc2"
func (s *UpgradeTestSuite) TestUmberRC4() {
key := "umber-rc4"
s.Assert().Contains(upgrades, key, "%q defined upgrades map", key)

entry := upgrades[key]
Expand Down

0 comments on commit 7d6c507

Please sign in to comment.