From be7a0f2908144b556ffa2f324d94b5a09c88d8a7 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 19 Sep 2015 11:06:51 -0700 Subject: [PATCH] Release v0.10.0 --- Cargo.toml | 4 ++-- README.md | 4 ++-- src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 491cc873..eb92c238 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.9.6" +version = "0.10.0" 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.6/postgres" +documentation = "https://sfackler.github.io/rust-postgres/doc/v0.10.0/postgres" readme = "README.md" keywords = ["database", "sql"] build = "build.rs" diff --git a/README.md b/README.md index 20e07ea7..25765c17 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.6/postgres) +[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.10.0/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) @@ -9,7 +9,7 @@ You can integrate Rust-Postgres into your project through the [releases on crate ```toml # Cargo.toml [dependencies] -postgres = "0.9" +postgres = "0.10" ``` ## Overview diff --git a/src/lib.rs b/src/lib.rs index 40f4592e..917d8176 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.6")] +#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.10.0")] #![warn(missing_docs)] extern crate bufstream;