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

docs: update the readme and changelog and release notes #2619

Merged
merged 3 commits into from
Nov 1, 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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
24 changes: 10 additions & 14 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.<cpu_arch>.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.<cpu_arch>.so`. For example:

- copy from `$GOPATH/pkg/mod/github.com/!cosm!wasm/[email protected].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/[email protected].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.

Expand Down
Loading