From 1802d65a8611ad990ed43e76fc814f150e34ba09 Mon Sep 17 00:00:00 2001 From: Martin Schleiss Date: Mon, 5 Dec 2016 12:36:25 +0100 Subject: [PATCH 1/3] Fix links in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c1cfbf33876..58b8d73a65f 100644 --- a/README.md +++ b/README.md @@ -85,13 +85,13 @@ there are a wide variety of helpful combinators associated with this trait which are also zero-allocation and serve as a succinct and powerful way to compose computations on futures. -[Future]: https://docs.rs/futures/0.1/futures/trait.Future.html +[Future]: https://docs.rs/futures/*/futures/trait.Future.html The `Future` trait is driven by one method, [`poll`][poll], which allows pulling values out of a future and also getting notified when a future is complete. More documentation can be found on the associated method. -[poll]: https://docs.rs/futures/0.1/futures/trait.Future.html#tymethod.pollod.poll +[poll]: https://docs.rs/futures/*/futures/trait.Future.html#tymethod.pollod.poll More information can be found in [the tutorial][tutorial-future-trait] From 5764a06612f896de5c9275c5972f0f4db62be870 Mon Sep 17 00:00:00 2001 From: Martin Schleiss Date: Mon, 5 Dec 2016 13:09:29 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 58b8d73a65f..75e1ee804fa 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -futures = "0.1.2" +futures = "0.1.6" ``` Next, add this to your crate: @@ -85,13 +85,13 @@ there are a wide variety of helpful combinators associated with this trait which are also zero-allocation and serve as a succinct and powerful way to compose computations on futures. -[Future]: https://docs.rs/futures/*/futures/trait.Future.html +[Future]: https://docs.rs/futures/*/futures/future/trait.Future.html The `Future` trait is driven by one method, [`poll`][poll], which allows pulling values out of a future and also getting notified when a future is complete. More documentation can be found on the associated method. -[poll]: https://docs.rs/futures/*/futures/trait.Future.html#tymethod.pollod.poll +[poll]: https://docs.rs/futures/*/futures/future/trait.Future.html#tymethod.pollod.poll More information can be found in [the tutorial][tutorial-future-trait] From aa35f409d8b7222cb64f187dcb294a5652c322ce Mon Sep 17 00:00:00 2001 From: Martin Schleiss Date: Mon, 5 Dec 2016 21:30:16 +0100 Subject: [PATCH 3/3] Use ^0.1 for doc.rs links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 75e1ee804fa..d0153988bb7 100644 --- a/README.md +++ b/README.md @@ -85,13 +85,13 @@ there are a wide variety of helpful combinators associated with this trait which are also zero-allocation and serve as a succinct and powerful way to compose computations on futures. -[Future]: https://docs.rs/futures/*/futures/future/trait.Future.html +[Future]: https://docs.rs/futures/^0.1/futures/future/trait.Future.html The `Future` trait is driven by one method, [`poll`][poll], which allows pulling values out of a future and also getting notified when a future is complete. More documentation can be found on the associated method. -[poll]: https://docs.rs/futures/*/futures/future/trait.Future.html#tymethod.pollod.poll +[poll]: https://docs.rs/futures/^0.1/futures/future/trait.Future.html#tymethod.pollod.poll More information can be found in [the tutorial][tutorial-future-trait]