Skip to content

Commit 413d1db

Browse files
committed
Release tokio-postgres v0.2.2
1 parent ccc19ea commit 413d1db

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tokio-postgres/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "tokio-postgres"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT"
66
description = "A native PostgreSQL driver using Tokio"
77
repository = "https://github.com/sfackler/rust-postgres"
8-
documentation = "https://docs.rs/tokio-postgres/0.2.1/tokio_postgres"
8+
documentation = "https://docs.rs/tokio-postgres/0.2.2/tokio_postgres"
99
readme = "../README.md"
1010
keywords = ["database", "postgres", "postgresql", "sql", "async"]
1111
categories = ["database"]
@@ -30,8 +30,8 @@ bytes = "0.4"
3030
fallible-iterator = "0.1.3"
3131
futures = "0.1.7"
3232
futures-state-stream = "0.1"
33-
postgres-protocol = { version = "0.2", path = "../postgres-protocol" }
34-
postgres-shared = { version = "0.2", path = "../postgres-shared" }
33+
postgres-protocol = { version = "0.2.2", path = "../postgres-protocol" }
34+
postgres-shared = { version = "0.2.1", path = "../postgres-shared" }
3535
tokio-core = "0.1"
3636
tokio-dns-unofficial = "0.1"
3737
tokio-io = "0.1"

tokio-postgres/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
//! l.run(done).unwrap();
5252
//! }
5353
//! ```
54-
#![doc(html_root_url="https://docs.rs/tokio-postgres/0.2.1")]
54+
#![doc(html_root_url="https://docs.rs/tokio-postgres/0.2.2")]
5555
#![warn(missing_docs)]
5656

5757
extern crate bytes;

0 commit comments

Comments
 (0)