Release tokio-postgres 0.2.1

This commit is contained in:
Steven Fackler 2017-02-23 20:40:02 -08:00
parent 6e2927bf7e
commit 5685dded4e
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
[package] [package]
name = "tokio-postgres" name = "tokio-postgres"
version = "0.2.0" version = "0.2.1"
authors = ["Steven Fackler <sfackler@gmail.com>"] authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT" license = "MIT"
description = "A native PostgreSQL driver using Tokio" description = "A native PostgreSQL driver using Tokio"
repository = "https://github.com/sfackler/rust-postgres" 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" readme = "../README.md"
keywords = ["database", "postgres", "postgresql", "sql", "async"] keywords = ["database", "postgres", "postgresql", "sql", "async"]

View File

@ -51,7 +51,7 @@
//! l.run(done).unwrap(); //! 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)] #![warn(missing_docs)]
extern crate fallible_iterator; extern crate fallible_iterator;