Skip to content

Commit 2981890

Browse files
committed
Release postgres v0.13.5
1 parent 99cab46 commit 2981890

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

postgres/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "postgres"
3-
version = "0.13.4"
3+
version = "0.13.5"
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.13.4/postgres"
8+
documentation = "https://docs.rs/postgres/0.13.5/postgres"
99
readme = "../README.md"
1010
keywords = ["database", "postgres", "postgresql", "sql"]
1111
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
@@ -49,7 +49,7 @@ rustc-serialize = { version = "0.3", optional = true }
4949
schannel = { version = "0.1", optional = true }
5050
security-framework = { version = "0.1.2", optional = true }
5151

52-
postgres-shared = { path = "../postgres-shared" }
52+
postgres-shared = { version = "0.1", path = "../postgres-shared" }
5353

5454
[dev-dependencies]
5555
url = "1.0"

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.13.4")]
69+
#![doc(html_root_url="https://docs.rs/postgres/0.13.5")]
7070
#![warn(missing_docs)]
7171
#![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy
7272

0 commit comments

Comments
 (0)