From e3e72a43483c8db7493f731704977a9d1f346303 Mon Sep 17 00:00:00 2001
From: Tony Arcieri <tony@iqlusion.io>
Date: Fri, 15 Mar 2024 16:27:29 -0600
Subject: [PATCH] cosmrs v0.16.0

---
 Cargo.lock          |  2 +-
 cosmrs/CHANGELOG.md | 22 ++++++++++++++++++++++
 cosmrs/Cargo.toml   |  2 +-
 3 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index 8d28967b..32543883 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -274,7 +274,7 @@ dependencies = [
 
 [[package]]
 name = "cosmrs"
-version = "0.16.0-pre"
+version = "0.16.0"
 dependencies = [
  "bip32",
  "cosmos-sdk-proto",
diff --git a/cosmrs/CHANGELOG.md b/cosmrs/CHANGELOG.md
index 78a288ac..30f75617 100644
--- a/cosmrs/CHANGELOG.md
+++ b/cosmrs/CHANGELOG.md
@@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## 0.16.0 (2024-03-15)
+### Added
+- Support for uppercase Bech32 ([#444])
+- Support for `slashing` module ([#452])
+- Support for validator-related queries in `staking` module ([#453])
+- Expose `base::query` module and pagination types ([#454])
+
+### Changed
+- Bump `tendermint`/`tendermint-rpc` dependencies to v0.35 ([#461])
+- Bump `cosmos-sdk-proto` to v0.21.0 ([#463])
+
+### Fixed
+- Correctly populate `updated` and `msg` fields from proto responses ([#451])
+
+[#444]: https://github.com/cosmos/cosmos-rust/pull/444
+[#451]: https://github.com/cosmos/cosmos-rust/pull/451
+[#452]: https://github.com/cosmos/cosmos-rust/pull/452
+[#453]: https://github.com/cosmos/cosmos-rust/pull/453
+[#454]: https://github.com/cosmos/cosmos-rust/pull/454
+[#461]: https://github.com/cosmos/cosmos-rust/pull/461
+[#463]: https://github.com/cosmos/cosmos-rust/pull/463
+
 ## 0.15.0 (2023-10-03)
 ### Added
 - Export `msg_clear_admin` and `msg_update_admin` types ([#419])
diff --git a/cosmrs/Cargo.toml b/cosmrs/Cargo.toml
index 2d8f857d..4985c30b 100644
--- a/cosmrs/Cargo.toml
+++ b/cosmrs/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "cosmrs"
-version = "0.16.0-pre"
+version = "0.16.0"
 authors = ["Tony Arcieri <tony@iqlusion.io>"]
 license = "Apache-2.0"
 repository = "https://github.com/cosmos/cosmos-rust/tree/main/cosmrs"