Skip to content

Commit

Permalink
cosmos-sdk-proto v0.2.0 + cosmos-tx v0.2.0-pre (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion authored Jan 5, 2021
1 parent af16f9c commit d2b542c
Show file tree
Hide file tree
Showing 9 changed files with 147 additions and 58 deletions.
62 changes: 31 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions cosmos-sdk-proto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog
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.2.0 (2020-01-04)
### Added
- `grpc` crate feature ([#8])

### Changed
- Bump `cosmos-sdk` rev to v0.40.0-rc6 ([#32])
- Bump `tendermint` + `tendermint-proto` crate dependencies to v0.17 ([#18])
- Format `prost`/`tonic` output with `rustfmt` ([#17])

[#8]: https://github.com/cosmos/cosmos-rust/pull/8
[#17]: https://github.com/cosmos/cosmos-rust/pull/17
[#18]: https://github.com/cosmos/cosmos-rust/pull/18
[#32]: https://github.com/cosmos/cosmos-rust/pull/32

## 0.1.2 (2020-11-30)

## 0.1.1 (2020-11-30)
- Initial release
2 changes: 1 addition & 1 deletion cosmos-sdk-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmos-sdk-proto"
version = "0.1.2"
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
authors = ["Justin Kilpatrick <justin@althea.net>", "Greg Szabo <greg@informal.systems>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
28 changes: 16 additions & 12 deletions cosmos-sdk-proto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,33 @@
[![Apache 2.0 Licensed][license-image]][license-link]
![MSRV][rustc-image]

Rust crate for interacting with Cosmos SDK
[Protobuf structs](https://github.com/cosmos/cosmos-sdk/tree/master/proto/).
Rust crate for interacting with [Protobufs] defined by the [Cosmos SDK].

The goal of this crate is to provide complete proto struct definitions for interacting
with a CosmosSDK blockchain. Currently this crate only provides a minority of the many
total structs exported by proto files. Pull requests to expand coverage are welcome.
with a Cosmos SDK blockchain.

Currently this crate only provides a minority of the many total structs exported by
proto files.

Pull requests to expand coverage are welcome.

[Documentation][docs-link]

## Requirements
## Minimum Supported Rust Version

- Rust 1.48+
- Cosmos SDK (downloaded automatically)
Requires Rust **1.48** or newer.

[//]: # "badges"
[crate-image]: https://img.shields.io/crates/v/cosmos-rust.svg
[crate-link]: https://crates.io/crates/cosmos-rust
[docs-image]: https://docs.rs/cosmos-rust/badge.svg
[docs-link]: https://docs.rs/cosmos-rust/
[crate-image]: https://img.shields.io/crates/v/cosmos-sdk-proto.svg
[crate-link]: https://crates.io/crates/cosmos-sdk-proto
[docs-image]: https://docs.rs/cosmos-sdk-proto/badge.svg
[docs-link]: https://docs.rs/cosmos-sdk-proto/
[build-image]: https://github.com/cosmos/cosmos-rust/workflows/cosmos-sdk-proto/badge.svg
[build-link]: https://github.com/cosmos/cosmos-rust/actions?query=workflow:cosmos-sdk-proto
[license-image]: https://img.shields.io/badge/license-Apache2.0-blue.svg
[license-link]: https://github.com/cosmos/cosmos-rust/blob/master/LICENSE
[rustc-image]: https://img.shields.io/badge/rustc-1.48+-blue.svg

[//]: # "general links"
[cosmos sdk]: https://github.com/cosmos/cosmos-sdk
[Protobufs]: (https://github.com/cosmos/cosmos-sdk/tree/master/proto/)
[Cosmos SDK]: https://github.com/cosmos/cosmos-sdk
Loading

0 comments on commit d2b542c

Please sign in to comment.