From 6918a8b906c52c8fa357c723a13e293c8f639e73 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 26 May 2016 22:58:24 -0700 Subject: [PATCH] Release v0.11.8 --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ead05a60..6d6b063e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.11.7" +version = "0.11.8" 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.7/postgres" +documentation = "https://sfackler.github.io/rust-postgres/doc/v0.11.8/postgres" readme = "README.md" keywords = ["database", "postgres", "postgresql", "sql"] include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"] diff --git a/README.md b/README.md index b7d14b1f..7efd0f89 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.7/postgres) +[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.8/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 c3234a48..e1eab14d 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.7")] +#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.11.8")] #![warn(missing_docs)] #![allow(unknown_lints, needless_lifetimes)] // for clippy #![cfg_attr(all(unix, feature = "nightly"), feature(unix_socket))]