From 0e2e07812ab19e1c1c70a3b457511cefdebd2a95 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Sat, 23 Feb 2019 21:58:47 -0800 Subject: [PATCH] Bump tokio-buf to v0.1.0 (#925) --- tokio-buf/CHANGELOG.md | 2 +- tokio-buf/Cargo.toml | 7 +++++-- tokio-buf/README.md | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/tokio-buf/CHANGELOG.md b/tokio-buf/CHANGELOG.md index fb22aa7c8..1144c18af 100644 --- a/tokio-buf/CHANGELOG.md +++ b/tokio-buf/CHANGELOG.md @@ -1,3 +1,3 @@ -# 0.1.0 (unreleased) +# 0.1.0 (February 23, 2019) * Initial release diff --git a/tokio-buf/Cargo.toml b/tokio-buf/Cargo.toml index 83a904854..fa0bc240c 100644 --- a/tokio-buf/Cargo.toml +++ b/tokio-buf/Cargo.toml @@ -3,6 +3,9 @@ name = "tokio-buf" # When releasing to crates.io: # - Update html_root_url. +# - Update doc url +# - Cargo.toml +# - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. version = "0.1.0" @@ -10,14 +13,14 @@ authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-buf/0.1.0" +documentation = "https://docs.rs/tokio-buf/0.1.0/tokio_buf" description = """ Asynchronous stream of byte buffers """ categories = ["asynchronous"] [dependencies] -bytes = { version = "0.4.10" } +bytes = "0.4.10" either = { version = "1.5", optional = true} futures = "0.1.23" diff --git a/tokio-buf/README.md b/tokio-buf/README.md index 3f275fb56..47239a31d 100644 --- a/tokio-buf/README.md +++ b/tokio-buf/README.md @@ -10,7 +10,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -tokio-buf = "0.1" +tokio-buf = "0.1.0" ``` Next, add this to your crate: