From 814c5797c5b27800a88bab11a578a39f03a16e1b Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 4 Feb 2017 15:37:34 -0800 Subject: [PATCH] Release tokio-postgres v0.1.1 --- tokio-postgres/Cargo.toml | 4 ++-- tokio-postgres/src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 65039ecc2..3e2fe02f0 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "tokio-postgres" -version = "0.1.0" +version = "0.1.1" authors = ["Steven Fackler "] license = "MIT" description = "A native PostgreSQL driver using Tokio" repository = "https://github.com/sfackler/rust-postgres" -documentation = "https://docs.rs/tokio-postgres/0.1.0/tokio_postgres" +documentation = "https://docs.rs/tokio-postgres/0.1.1/tokio_postgres" readme = "../README.md" [features] diff --git a/tokio-postgres/src/lib.rs b/tokio-postgres/src/lib.rs index de23b6937..8450e323d 100644 --- a/tokio-postgres/src/lib.rs +++ b/tokio-postgres/src/lib.rs @@ -49,7 +49,7 @@ //! l.run(done).unwrap(); //! } //! ``` -#![doc(html_root_url="https://docs.rs/tokio-postgres/0.1.0")] +#![doc(html_root_url="https://docs.rs/tokio-postgres/0.1.1")] #![warn(missing_docs)] extern crate fallible_iterator;