Skip to content

Commit b419625

Browse files
committed
Merge branch 'release-v0.11.11' into release
2 parents 30f11af + 86b2061 commit b419625

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
target/
22
Cargo.lock
33
.cargo/
4+
.idea
5+
*.iml

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "postgres"
3-
version = "0.11.10"
3+
version = "0.11.11"
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://sfackler.github.io/rust-postgres/doc/v0.11.10/postgres"
8+
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.11.11/postgres"
99
readme = "README.md"
1010
keywords = ["database", "postgres", "postgresql", "sql"]
1111
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
@@ -32,10 +32,10 @@ hex = "0.2"
3232
rustc-serialize = { version = "0.3", optional = true }
3333
chrono = { version = "0.2.14", optional = true }
3434
openssl = { version = ">= 0.6.4, < 0.8", optional = true }
35-
serde_json = { version = ">= 0.6, < 0.8", optional = true }
35+
serde_json = { version = ">= 0.6, < 0.9", optional = true }
3636
time = { version = "0.1.14", optional = true }
3737
unix_socket = { version = "0.5", optional = true }
38-
uuid = { version = ">= 0.1, < 0.3", optional = true }
38+
uuid = { version = ">= 0.1, < 0.4", optional = true }
3939
security-framework = { version = "0.1.2", optional = true }
4040
bit-vec = { version = "0.4", optional = true }
4141
eui48 = { version = "0.1", optional = true }

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Rust-Postgres
22
A native PostgreSQL driver for Rust.
33

4-
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.10/postgres)
4+
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.11/postgres)
55

66
[![Build Status](https://travis-ci.org/sfackler/rust-postgres.png?branch=master)](https://travis-ci.org/sfackler/rust-postgres) [![Latest Version](https://img.shields.io/crates/v/postgres.svg)](https://crates.io/crates/postgres)
77

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//! }
3939
//! }
4040
//! ```
41-
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.11.10")]
41+
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.11.11")]
4242
#![warn(missing_docs)]
4343
#![allow(unknown_lints, needless_lifetimes)] // for clippy
4444
#![cfg_attr(all(unix, feature = "nightly"), feature(unix_socket))]

0 commit comments

Comments
 (0)