Skip to content

Commit bcb8e8a

Browse files
cosmrs v0.2.0 (#132)
1 parent 56ec369 commit bcb8e8a

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

cosmos-sdk-proto/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## 0.7.0 (2021-09-27)
99
### Changed
10-
- Update `tendermint` crate to v0.22 ([#128])
10+
- Update `tendermint-proto` crate to v0.22 ([#128])
1111
- Bump `COSMOS_REV` to v0.44.0 ([#130])
1212

1313
[#128]: https://github.com/cosmos/cosmos-rust/pull/128

cosmrs/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.2.0 (2021-09-27)
8+
### Changed
9+
- Make `Tx::find_by_hash` use the `/tx` endpoint ([#116])
10+
- Update `tendermint` crate to v0.22 ([#128])
11+
- Update `cosmos-sdk-proto` to v0.7 ([#129])
12+
13+
[#116]: https://github.com/cosmos/cosmos-rust/pull/116
14+
[#128]: https://github.com/cosmos/cosmos-rust/pull/128
15+
[#129]: https://github.com/cosmos/cosmos-rust/pull/129
16+
717
## 0.1.0 (2021-08-25)
818
- Initial release under `cosmrs` name

cosmrs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cosmrs"
3-
version = "0.2.0-pre" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
44
authors = ["Tony Arcieri <tony@iqlusion.io>"]
55
edition = "2018"
66
license = "Apache-2.0"

cosmrs/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#![cfg_attr(docsrs, feature(doc_cfg))]
2424
#![doc(
2525
html_logo_url = "https://raw.githubusercontent.com/cosmos/cosmos-rust/main/.images/cosmos.png",
26-
html_root_url = "https://docs.rs/cosmrs/0.1.0"
26+
html_root_url = "https://docs.rs/cosmrs/0.2.0"
2727
)]
2828
#![forbid(unsafe_code)]
2929
#![warn(trivial_casts, trivial_numeric_casts, unused_import_braces)]

0 commit comments

Comments
 (0)