diff --git a/Cargo.toml b/Cargo.toml index e7937b3f..dd471146 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.9.0" +version = "0.9.1" 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.0/postgres" +documentation = "https://sfackler.github.io/rust-postgres/doc/v0.9.1/postgres" readme = "README.md" keywords = ["database", "sql"] build = "build.rs" diff --git a/README.md b/README.md index 2b0f5bf1..6f7e3547 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Rust-Postgres A native PostgreSQL driver for Rust. -Documentation is available at https://sfackler.github.io/rust-postgres/doc/v0.9.0/postgres +Documentation is available at https://sfackler.github.io/rust-postgres/doc/v0.9.1/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 dc1ed2fe..1cf00e98 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,7 +42,7 @@ //! } //! } //! ``` -#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.9.0")] +#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.9.1")] #![warn(missing_docs)] extern crate bufstream;