Skip to content

Commit ccc19ea

Browse files
committed
Release postgres v0.14.1
1 parent 29cac44 commit ccc19ea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

postgres/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "postgres"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT"
66
description = "A native PostgreSQL driver"
77
repository = "https://github.com/sfackler/rust-postgres"
8-
documentation = "https://docs.rs/postgres/0.14.0/postgres"
8+
documentation = "https://docs.rs/postgres/0.14.1/postgres"
99
readme = "../README.md"
1010
keywords = ["database", "postgres", "postgresql", "sql"]
1111
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
@@ -52,8 +52,8 @@ rustc-serialize = { version = "0.3", optional = true }
5252
schannel = { version = "0.1", optional = true }
5353
security-framework = { version = "0.1.2", optional = true }
5454

55-
postgres-protocol = { version = "0.2", path = "../postgres-protocol" }
56-
postgres-shared = { version = "0.2", path = "../postgres-shared" }
55+
postgres-protocol = { version = "0.2.2", path = "../postgres-protocol" }
56+
postgres-shared = { version = "0.2.1", path = "../postgres-shared" }
5757

5858
[dev-dependencies]
5959
hex = "0.2"

postgres/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
//! .unwrap();
6767
//! }
6868
//! ```
69-
#![doc(html_root_url="https://docs.rs/postgres/0.14.0")]
69+
#![doc(html_root_url="https://docs.rs/postgres/0.14.1")]
7070
#![warn(missing_docs)]
7171
#![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy
7272

0 commit comments

Comments
 (0)