Skip to content

Commit

Permalink
README: Fix CI badges, update minimum Rust version, update logo in do…
Browse files Browse the repository at this point in the history
…cs (#234)

* Fix CI badges in README and update minimum Rust version

* Remove broken link to Tendermint logo in docs
  • Loading branch information
romac committed Apr 22, 2020
1 parent 4936d18 commit 26d81be
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
[![Crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
[![Build Status][build-image]][build-link]
[![Audit Status][audit-image]][audit-link]
[![Apache 2.0 Licensed][license-image]][license-link]
![Rust 1.35+][rustc-image]
![Rust 1.39+][rustc-image]

Rust crate for interacting with [Tendermint]: a high-performance blockchain
consensus engine that powers Byzantine fault tolerant applications written
Expand All @@ -14,11 +15,11 @@ in any programming language.

## Requirements

- Rust 1.35+
- Rust 1.39+

## License

Copyright © 2018-2019 Tendermint
Copyright © 2020 Informal Systems

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -38,11 +39,13 @@ limitations under the License.
[crate-link]: https://crates.io/crates/tendermint
[docs-image]: https://docs.rs/tendermint/badge.svg
[docs-link]: https://docs.rs/tendermint/
[build-image]: https://circleci.com/gh/interchainio/tendermint-rs.svg?style=shield
[build-link]: https://circleci.com/gh/interchainio/tendermint-rs
[build-image]: https://github.com/informalsystems/tendermint-rs/workflows/Rust/badge.svg
[build-link]: https://github.com/informalsystems/tendermint-rs/actions?query=workflow%3ARust
[audit-image]: https://github.com/informalsystems/tendermint-rs/workflows/Audit-Check/badge.svg
[audit-link]: https://github.com/informalsystems/tendermint-rs/actions?query=workflow%3AAudit-Check
[license-image]: https://img.shields.io/badge/license-Apache2.0-blue.svg
[license-link]: https://github.com/interchainio/tendermint-rs/blob/master/LICENSE
[rustc-image]: https://img.shields.io/badge/rustc-1.35+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.39+-blue.svg

[//]: # (general links)

Expand Down
5 changes: 1 addition & 4 deletions tendermint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
unused_qualifications
)]
#![forbid(unsafe_code)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/kms/master/img/tendermint.png",
html_root_url = "https://docs.rs/tendermint/0.13.0"
)]
#![doc(html_root_url = "https://docs.rs/tendermint/0.13.0")]

#[macro_use]
pub mod error;
Expand Down

0 comments on commit 26d81be

Please sign in to comment.