diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index 46423cbd..22f9e521 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "tokio-postgres" -version = "0.2.0" +version = "0.2.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.2.0/tokio_postgres" +documentation = "https://docs.rs/tokio-postgres/0.2.1/tokio_postgres" readme = "../README.md" keywords = ["database", "postgres", "postgresql", "sql", "async"] diff --git a/tokio-postgres/src/lib.rs b/tokio-postgres/src/lib.rs index 612cdf6e..9e89b37f 100644 --- a/tokio-postgres/src/lib.rs +++ b/tokio-postgres/src/lib.rs @@ -51,7 +51,7 @@ //! l.run(done).unwrap(); //! } //! ``` -#![doc(html_root_url="https://docs.rs/tokio-postgres/0.1.1")] +#![doc(html_root_url="https://docs.rs/tokio-postgres/0.2.1")] #![warn(missing_docs)] extern crate fallible_iterator;