From 762a7aef7f8e8f7f41c65003ff761bf2da507ad2 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 30 Sep 2017 16:14:46 -0700 Subject: [PATCH] Release v0.3.0 --- tokio-postgres/Cargo.toml | 3 +-- tokio-postgres/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 9411e964..bb67b9b3 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,11 +1,10 @@ [package] name = "tokio-postgres" -version = "0.2.3" +version = "0.3.0" 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.2.2/tokio_postgres" readme = "../README.md" keywords = ["database", "postgres", "postgresql", "sql", "async"] categories = ["database"] diff --git a/tokio-postgres/src/lib.rs b/tokio-postgres/src/lib.rs index 3510fe6d..b8da20b3 100644 --- a/tokio-postgres/src/lib.rs +++ b/tokio-postgres/src/lib.rs @@ -50,7 +50,7 @@ //! l.run(done).unwrap(); //! } //! ``` -#![doc(html_root_url="https://docs.rs/tokio-postgres/0.2.3")] +#![doc(html_root_url="https://docs.rs/tokio-postgres/0.3")] #![warn(missing_docs)] extern crate bytes;