Release tokio-postgres v0.2.2

This commit is contained in:
Steven Fackler
2017-05-02 08:56:12 -07:00
parent ccc19ea28f
commit 413d1db5cd
2 changed files with 5 additions and 5 deletions

View File

@@ -1,11 +1,11 @@
[package]
name = "tokio-postgres"
version = "0.2.1"
version = "0.2.2"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT"
description = "A native PostgreSQL driver using Tokio"
repository = "https://github.com/sfackler/rust-postgres"
documentation = "https://docs.rs/tokio-postgres/0.2.1/tokio_postgres"
documentation = "https://docs.rs/tokio-postgres/0.2.2/tokio_postgres"
readme = "../README.md"
keywords = ["database", "postgres", "postgresql", "sql", "async"]
categories = ["database"]
@@ -30,8 +30,8 @@ bytes = "0.4"
fallible-iterator = "0.1.3"
futures = "0.1.7"
futures-state-stream = "0.1"
postgres-protocol = { version = "0.2", path = "../postgres-protocol" }
postgres-shared = { version = "0.2", path = "../postgres-shared" }
postgres-protocol = { version = "0.2.2", path = "../postgres-protocol" }
postgres-shared = { version = "0.2.1", path = "../postgres-shared" }
tokio-core = "0.1"
tokio-dns-unofficial = "0.1"
tokio-io = "0.1"

View File

@@ -51,7 +51,7 @@
//! l.run(done).unwrap();
//! }
//! ```
#![doc(html_root_url="https://docs.rs/tokio-postgres/0.2.1")]
#![doc(html_root_url="https://docs.rs/tokio-postgres/0.2.2")]
#![warn(missing_docs)]
extern crate bytes;