diff --git a/CHANGELOG.md b/CHANGELOG.md index 01bbb25b64..84b3d81b44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,20 @@ Ref: https://keepachangelog.com/en/1.0.0/ # Changelog +## v6.7.0-rc1 + +### Improvements + +- [2572](https://github.com/umee-network/umee/pull/2572) Bump cosmos-sdk from 0.47.12 to 0.47.13. +- [2599](https://github.com/umee-network/umee/pull/2599) Bump ibc-go from 7.7.0 to 7.8.0. +- [2607](https://github.com/umee-network/umee/pull/2607) Bump wasmvm from 1.5.4 to 1.5.5 +- [2614](https://github.com/umee-network/umee/pull/2614) Bump cometbft from 0.37.10 to 0.37.12. + +### Bug Fixes + +- [2615](https://github.com/umee-network/umee/pull/2615) Fix the token price is asset is blacklisted. +- [2618](https://github.com/umee-network/umee/pull/2618) Downgrade the cometbft-db to v0.12.0 and upgrade the cometbft to 0.37.13 + ## v6.6.0-rc1 ### Features diff --git a/README.md b/README.md index b017c1beb5..f9c451f72f 100644 --- a/README.md +++ b/README.md @@ -66,10 +66,11 @@ See [Release procedure](CONTRIBUTING.md#release-procedure) for more information | v6.4.x | x | v0.47.10+ | v7.3.2 | --- | umee/v2.4.1+ | --- | v1.5.2 | | v6.5.x | x | v0.47.11+ | v7.6.0 | --- | umee/v2.4.3+ | --- | v1.5.2 | | v6.6.x | x | v0.47.11+ | v7.6.0 | --- | umee/v2.4.3+ | --- | v1.5.2 | +| v6.7.x | x | v0.47.14+ | v7.8.0 | --- | umee/v2.4.4+ | --- | v1.5.5 | #### Price Feeder -Since `Price Feeder v2.1.0` the recommended oracle price feeder has been moved to this [repository](https://github.com/ojo-network/price-feeder/tree/umee) with the version prefix `umee/`. +Since `Price Feeder v2.4.4` the recommended oracle price feeder has been moved to this [repository](https://github.com/ojo-network/price-feeder/tree/umee) with the version prefix `umee/`. #### libwasmvm diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index a2654963b0..525a6af88f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -6,35 +6,31 @@ The Release Procedure is defined in the [CONTRIBUTING](CONTRIBUTING.md#release-procedure) document. -## v6.6.0 +## v6.7.0-rc1 Highlights: -- Cosmos SDK v0.47.13 update. -- Adding new `auction` module to our app. -- Removing `crisis` module from our app. +- cosmos SDK v0.47.14 update. +- cometbft v0.37.13 update. +- wasmvm v1.5.5 update. +- ibc-go v7.8.0 update. [CHANGELOG](CHANGELOG.md) -### Auction module - -We propose a new Cosmos SDK module, that will provide mechanism for protocol owned auctions. UX Chain will now auction a portion of collected fees and introduce a token burning mechanism, unlocking a way to a potentially deflationary UX token. -Documentation: [x/auction/README.md](https://github.com/umee-network/umee/blob/v6.6.0/x/auction/README.md) - ### Validators -**Upgrade Title** (for Cosmovisor): **v6.6**. +**Upgrade Title** (for Cosmovisor): **v6.7-rc1**. -Update Price Feeder to `umee/2.4.3+`. +Update Price Feeder to `umee/2.4.4+`. NOTE: after the upgrade, you should restart your Price Feeder. We observed that Price Feeder doesn't correctly re-establish a connection after the chain upgrade. #### libwasmvm update -Our dependencies have been updated. The binary requires `libwasmvm v1.5.2`. 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..so`. For example: +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..so`. For example: -- copy from `$GOPATH/pkg/mod/github.com/!cosm!wasm/wasmvm@v1.5.2/internal/api/libwasmvm.$(uname -m).so` -- or download from github `wget https://raw.githubusercontent.com/CosmWasm/wasmvm/v1.5.2/internal/api/libwasmvm.$(uname -m).so -O /lib/libwasmvm.$(uname -m).so` +- copy from `$GOPATH/pkg/mod/github.com/!cosm!wasm/wasmvm@v1.5.5/internal/api/libwasmvm.$(uname -m).so` +- 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` You don't need to do anything if you are using our Docker image.