Release v0.11.0

This commit is contained in:
Steven Fackler 2016-01-03 14:40:05 -08:00
parent 6568523361
commit 05da5ffc97
3 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
[package]
name = "postgres"
version = "0.10.2"
version = "0.11.0"
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.10.2/postgres"
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.11.0/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.10.2/postgres)
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.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.10"
postgres = "0.11"
```
## Overview

View File

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