From 0a3cb53e868118f5c7e65d274e32241f176a191c Mon Sep 17 00:00:00 2001 From: Lloyd Date: Wed, 12 Oct 2016 13:23:21 +0900 Subject: [PATCH 1/2] Add a version badge to the readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9986992f742..e7ed58f2dff 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ This library is an implementation of **zero-cost futures** in Rust. [![Build Status](https://travis-ci.org/alexcrichton/futures-rs.svg?branch=master)](https://travis-ci.org/alexcrichton/futures-rs) [![Build status](https://ci.appveyor.com/api/projects/status/yl5w3ittk4kggfsh?svg=true)](https://ci.appveyor.com/project/alexcrichton/futures-rs) +[![Crates.io](https://img.shields.io/crates/v/futures.svg?maxAge=2592000)]() [Documentation](https://docs.rs/futures) From 52dd3f6b3bdffa54ab6f6a327ff9baebc1eaeb4b Mon Sep 17 00:00:00 2001 From: Lloyd Date: Wed, 12 Oct 2016 13:24:27 +0900 Subject: [PATCH 2/2] Update version in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e7ed58f2dff..c1cfbf33876 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -futures = "0.1" +futures = "0.1.2" ``` Next, add this to your crate: