From 2f41c4794430c6103d5b8c8e79fe3e2fb725d196 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 17 Feb 2016 21:30:19 -0800 Subject: [PATCH] Release v0.11.2 --- 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 40f8124a..d3e10896 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.11.1" +version = "0.11.2" 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.1/postgres" +documentation = "https://sfackler.github.io/rust-postgres/doc/v0.11.2/postgres" readme = "README.md" keywords = ["database", "postgres", "postgresql", "sql"] build = "build.rs" diff --git a/README.md b/README.md index 864205e9..1201f66f 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.1/postgres) +[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.2/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 5bed92cb..9b24f527 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.1")] +#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.11.2")] #![warn(missing_docs)] extern crate bufstream;