Merge branch 'release-v0.11.11' into release

This commit is contained in:
Steven Fackler 2016-08-29 10:27:08 +02:00
commit b419625641
4 changed files with 8 additions and 6 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
target/
Cargo.lock
.cargo/
.idea
*.iml

View File

@ -1,11 +1,11 @@
[package]
name = "postgres"
version = "0.11.10"
version = "0.11.11"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT"
description = "A native PostgreSQL driver"
repository = "https://github.com/sfackler/rust-postgres"
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.11.10/postgres"
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.11.11/postgres"
readme = "README.md"
keywords = ["database", "postgres", "postgresql", "sql"]
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
@ -32,10 +32,10 @@ hex = "0.2"
rustc-serialize = { version = "0.3", optional = true }
chrono = { version = "0.2.14", optional = true }
openssl = { version = ">= 0.6.4, < 0.8", optional = true }
serde_json = { version = ">= 0.6, < 0.8", optional = true }
serde_json = { version = ">= 0.6, < 0.9", optional = true }
time = { version = "0.1.14", optional = true }
unix_socket = { version = "0.5", optional = true }
uuid = { version = ">= 0.1, < 0.3", optional = true }
uuid = { version = ">= 0.1, < 0.4", optional = true }
security-framework = { version = "0.1.2", optional = true }
bit-vec = { version = "0.4", optional = true }
eui48 = { version = "0.1", optional = true }

View File

@ -1,7 +1,7 @@
# Rust-Postgres
A native PostgreSQL driver for Rust.
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.10/postgres)
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.11/postgres)
[![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)

View File

@ -38,7 +38,7 @@
//! }
//! }
//! ```
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.11.10")]
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.11.11")]
#![warn(missing_docs)]
#![allow(unknown_lints, needless_lifetimes)] // for clippy
#![cfg_attr(all(unix, feature = "nightly"), feature(unix_socket))]