Skip to content

Commit

Permalink
cosmos-sdk-rs v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion committed Apr 14, 2021
1 parent f409277 commit f58b81f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
8 changes: 1 addition & 7 deletions cosmos-sdk-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,5 @@ 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-pre (2021-01-04)
### Added
- Initial transaction builder and signer ([#6])

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

## 0.1.0 (2020-12-07)
## 0.1.1 (2021-04-13)
- Initial release
2 changes: 1 addition & 1 deletion cosmos-sdk-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cosmos-sdk"
version = "0.1.0-pre" # Also update html_root_url in lib.rs when bumping this
version = "0.1.1" # Also update html_root_url in lib.rs when bumping this
authors = ["Tony Arcieri <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
10 changes: 9 additions & 1 deletion cosmos-sdk-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
//! Framework for building [Cosmos] blockchain applications in Rust, modeled off
//! of the [Cosmos SDK for Golang].
//!
//! ## About
//!
//! This library is presently designed to serve as a *client* for interacting
//! with the Golang implementation of the Cosmos SDK.
//!
//! It does not implement server-side functionality (yet), such as hooks
//! and message passing.
//!
//! ## Features
//!
//! - [Transactions][`tx`]: build, sign, and/or parse Cosmos SDK transactions
Expand All @@ -13,7 +21,7 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/cosmos/cosmos-rust/main/.images/cosmos.png",
html_root_url = "https://docs.rs/cosmos-sdk-rs/0.1.0-pre"
html_root_url = "https://docs.rs/cosmos-sdk-rs/0.1.1"
)]
#![forbid(unsafe_code)]
#![warn(trivial_casts, trivial_numeric_casts, unused_import_braces)]
Expand Down

0 comments on commit f58b81f

Please sign in to comment.