From ae9a82feadb461389a2624b9b691e1ca8e77c699 Mon Sep 17 00:00:00 2001 From: Marius Poke Date: Mon, 3 Jul 2023 17:25:51 +0200 Subject: [PATCH] docs: v10.0.2 - update changelog and release notes (#2632) * unclog build > CHANGELOG.md * changelog and release notes * add #2627 to CHANGELOG * Update CHANGELOG.md --------- Co-authored-by: yaruwangway <69694322+yaruwangway@users.noreply.github.com> --- .../dependencies/2554-bump-ibc.md | 0 .../dependencies/2594-bump-cometbft.md | 0 .../2629-add-query-local-min-gas-prices.md | 0 .changelog/10.0.2/summary.md | 3 +++ CHANGELOG.md | 21 +++++++++++++++++++ RELEASE_NOTES.md | 17 +++++++++++++++ 6 files changed, 41 insertions(+) rename .changelog/{unreleased => 10.0.2}/dependencies/2554-bump-ibc.md (100%) rename .changelog/{unreleased => 10.0.2}/dependencies/2594-bump-cometbft.md (100%) rename .changelog/{unreleased => 10.0.2}/features/2629-add-query-local-min-gas-prices.md (100%) create mode 100644 .changelog/10.0.2/summary.md create mode 100644 RELEASE_NOTES.md diff --git a/.changelog/unreleased/dependencies/2554-bump-ibc.md b/.changelog/10.0.2/dependencies/2554-bump-ibc.md similarity index 100% rename from .changelog/unreleased/dependencies/2554-bump-ibc.md rename to .changelog/10.0.2/dependencies/2554-bump-ibc.md diff --git a/.changelog/unreleased/dependencies/2594-bump-cometbft.md b/.changelog/10.0.2/dependencies/2594-bump-cometbft.md similarity index 100% rename from .changelog/unreleased/dependencies/2594-bump-cometbft.md rename to .changelog/10.0.2/dependencies/2594-bump-cometbft.md diff --git a/.changelog/unreleased/features/2629-add-query-local-min-gas-prices.md b/.changelog/10.0.2/features/2629-add-query-local-min-gas-prices.md similarity index 100% rename from .changelog/unreleased/features/2629-add-query-local-min-gas-prices.md rename to .changelog/10.0.2/features/2629-add-query-local-min-gas-prices.md diff --git a/.changelog/10.0.2/summary.md b/.changelog/10.0.2/summary.md new file mode 100644 index 00000000000..bf24f328b78 --- /dev/null +++ b/.changelog/10.0.2/summary.md @@ -0,0 +1,3 @@ +*June 29, 2023* + +This release bumps several dependencies and enables extra queries. diff --git a/CHANGELOG.md b/CHANGELOG.md index 378c6971fed..848fb8742b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # CHANGELOG +## 10.0.2 + +*June 29, 2023* + +This release bumps several dependencies and enables extra queries. + +### DEPENDENCIES + +- Bump [ibc-go](https://github.com/cosmos/ibc-go) to + [v4.4.2](https://github.com/cosmos/ibc-go/releases/tag/v4.4.2) + ([\#2554](https://github.com/cosmos/gaia/pull/2554)) +- Bump [CometBFT](https://github.com/cometbft/cometbft) to + [v0.34.29](https://github.com/cometbft/cometbft/releases/tag/v0.34.29) + ([\#2594](https://github.com/cosmos/gaia/pull/2594)) + +### FEATURES + +- Register NodeService to enable query /cosmos/base/node/v1beta1/config + gRPC query to disclose node operator's configured minimum-gas-price. + ([\#2629](https://github.com/cosmos/gaia/issues/2629)) + ## [v10.0.1] 2023-05-25 * (deps) [#2543](https://github.com/cosmos/gaia/pull/2543) Bump [ibc-go](https://github.com/cosmos/ibc-go) to [v4.4.1](https://github.com/cosmos/ibc-go/releases/tag/v4.4.1). diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md new file mode 100644 index 00000000000..17f06344c9c --- /dev/null +++ b/RELEASE_NOTES.md @@ -0,0 +1,17 @@ +# Gaia v10.0.2 Release Notes + +## 📝 Changelog + +Check out the [changelog](https://github.com/cosmos/gaia/blob/v10.0.2/CHANGELOG.md) for a list of relevant changes or [compare all changes](https://github.com/cosmos/cosmos-sdk/compare/release/v10.0.1...v10.0.2) from last release. + +## 🔨 Build from source + +```bash +git clone https://github.com/cosmos/gaia +cd gaia && git checkout v10.0.2 +make install +``` + +## ⚡️ Download binaries + +Binaries for linux, darwin, and windows are available below. \ No newline at end of file