Skip to content

Commit e1ae936

Browse files
authored
add upgrade handler for v6.7.4-rc1 (#2696)
1 parent 382fc85 commit e1ae936

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ Ref: https://keepachangelog.com/en/1.0.0/
4444

4545
# Changelog
4646

47+
## v6.7.4-rc1
48+
49+
### Improvements
50+
51+
- deps upgrade
52+
- cosmos-sdk v0.47.17
53+
- wasmvm v1.5.9
54+
- packet-forward-middleware v7.3.0
55+
- ibc-go v7.10.0
56+
4757
## v6.7.3
4858

4959
### Improvements

RELEASE_NOTES.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66

77
The Release Procedure is defined in the [CONTRIBUTING](CONTRIBUTING.md#release-procedure) document.
88

9-
## v6.7.3
9+
## v6.7.4-rc1
1010

1111
Highlights:
1212

1313
- deps upgrade
14-
- mint the sfrxeth to user - <https://hackmd.io/@DCFJtA8FRayD6p1Q0XgZHQ/HkfelYUuJx>
15-
- fix the ibc-transfer - checking acknowledgement only acknowledgement is when not asynchronous
14+
- cosmos-sdk to v0.47.17
15+
- wasmvm v1.5.9
16+
- packet-forward-middleware v7.3.0
17+
- ibc-go v7.10.0
1618

1719
[CHANGELOG](CHANGELOG.md)
1820

@@ -24,7 +26,7 @@ NOTE: after the upgrade, you should restart your Price Feeder. We observed that
2426

2527
#### libwasmvm update
2628

27-
Our dependencies have been updated. The binary requires `libwasmvm v1.5.5`. When you build the binary from source on the server machine you probably don't need any change. However, when you download a binary from GitHub, or from another source, make sure you update the `/usr/lib/libwasmvm.<cpu_arch>.so`. For example:
29+
Our dependencies have been updated. The binary requires `libwasmvm v1.5.9`. When you build the binary from source on the server machine you probably don't need any change. However, when you download a binary from GitHub, or from another source, make sure you update the `/usr/lib/libwasmvm.<cpu_arch>.so`. For example:
2830

2931
- copy from `$GOPATH/pkg/mod/github.com/!cosm!wasm/[email protected]/internal/api/libwasmvm.$(uname -m).so`
3032
- or download from github `wget https://raw.githubusercontent.com/CosmWasm/wasmvm/v1.5.5/internal/api/libwasmvm.$(uname -m).so -O /lib/libwasmvm.$(uname -m).so`

app/upgrades.go

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ func (app UmeeApp) RegisterUpgradeHandlers() {
6060
app.registerUpgrade("v6.7.2", upgradeInfo, nil, nil, nil)
6161
app.registerUpgrade6_7_3RC1(upgradeInfo)
6262
app.registerUpgrade6_7_3(upgradeInfo)
63+
64+
// v6.7.4-rc1
65+
app.registerUpgrade("v6.7.4-rc1", upgradeInfo, nil, nil, nil)
6366
}
6467

6568
func (app *UmeeApp) registerUpgrade6_7_3(_ upgradetypes.Plan) {

0 commit comments

Comments
 (0)