diff --git a/.gitignore b/.gitignore index b163a8c7..f106a7bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ target/ Cargo.lock .cargo/ +.idea +*.iml diff --git a/Cargo.toml b/Cargo.toml index e7c8f1c1..95b41b5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.11.10" +version = "0.11.11" authors = ["Steven Fackler "] 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 } diff --git a/README.md b/README.md index bd5997c6..58e71e5f 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/src/lib.rs b/src/lib.rs index 7cdca2db..ecdd3c44 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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))]