Skip to content

Commit

Permalink
Release tokio-postgres v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed May 2, 2017
1 parent ccc19ea commit 413d1db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions tokio-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "tokio-postgres"
version = "0.2.1"
version = "0.2.2"
authors = ["Steven Fackler <[email protected]>"]
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"]
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tokio-postgres/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 413d1db

Please sign in to comment.