From 3622a2e031db1cfa79619c56cccaa4013fb25acd Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 2 Dec 2015 21:58:16 -0800 Subject: [PATCH] Release v0.10.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 9f1885d4..a6005ec5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.10.1" +version = "0.10.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.10.1/postgres" +documentation = "https://sfackler.github.io/rust-postgres/doc/v0.10.2/postgres" readme = "README.md" keywords = ["database", "sql"] build = "build.rs" diff --git a/README.md b/README.md index 69992e90..4a8f35bf 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.10.1/postgres) +[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.10.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 aa9222e5..cd0a4972 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -41,7 +41,7 @@ //! } //! } //! ``` -#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.10.1")] +#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.10.2")] #![warn(missing_docs)] extern crate bufstream;