Release v0.9.5

This commit is contained in:
Steven Fackler 2015-08-03 17:15:18 -07:00
parent 94f6577904
commit d958316d2b
3 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
[package]
name = "postgres"
version = "0.9.4"
version = "0.9.5"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT"
description = "A native PostgreSQL driver"
repository = "https://github.com/sfackler/rust-postgres"
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.9.4/postgres"
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.9.5/postgres"
readme = "README.md"
keywords = ["database", "sql"]
build = "build.rs"

View File

@ -1,7 +1,7 @@
# Rust-Postgres
A native PostgreSQL driver for Rust.
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.9.4/postgres)
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.9.5/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)

View File

@ -41,7 +41,7 @@
//! }
//! }
//! ```
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.9.4")]
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.9.5")]
#![warn(missing_docs)]
extern crate bufstream;