Skip to content

Commit 5524e21

Browse files
committed
Release postgres v0.15.0
1 parent 06c1b55 commit 5524e21

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.14.2"
3+
version = "0.15.0"
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.2/postgres"
8+
documentation = "https://docs.rs/postgres/0.15.0/postgres"
99
readme = "../README.md"
1010
keywords = ["database", "postgres", "postgresql", "sql"]
1111
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
@@ -67,7 +67,7 @@ schannel = { version = "0.1", optional = true }
6767
security-framework = { version = "0.1.2", optional = true }
6868

6969
postgres-protocol = { version = "0.3.0", path = "../postgres-protocol" }
70-
postgres-shared = { version = "0.3.0", path = "../postgres-shared" }
70+
postgres-shared = { version = "0.4.0", path = "../postgres-shared" }
7171

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

0 commit comments

Comments
 (0)