From 06b4681f16d797749da1ab947d60980f5234ab5a Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 4 Jul 2015 16:04:53 -0700 Subject: [PATCH] Release v0.9.3 --- 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 95f0daa8..baf3ffbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.9.2" +version = "0.9.3" 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.9.2/postgres" +documentation = "https://sfackler.github.io/rust-postgres/doc/v0.9.3/postgres" readme = "README.md" keywords = ["database", "sql"] build = "build.rs" diff --git a/README.md b/README.md index c7150a17..8fc28b56 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.9.2/postgres) +[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.9.3/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 3025a6af..65340e2e 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.9.2")] +#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.9.3")] #![warn(missing_docs)] extern crate bufstream;