From 07f3dc03b188e9af3e9bc138e83f08e0466251fd Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 9 Oct 2016 22:06:12 -0700 Subject: [PATCH] Release v0.12.0 --- Cargo.toml | 4 ++-- README.md | 5 ++--- src/lib.rs | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ddd56775..bb1ea7be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.11.11" +version = "0.12.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.11.11/postgres" +documentation = "https://sfackler.github.io/rust-postgres/doc/v0.12.0/postgres" readme = "README.md" keywords = ["database", "postgres", "postgresql", "sql"] include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"] diff --git a/README.md b/README.md index cde56c2d..960b7d15 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,14 @@ # Rust-Postgres A native PostgreSQL driver for Rust. -[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.11/postgres) +[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.12.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) You can integrate Rust-Postgres into your project through the [releases on crates.io](https://crates.io/crates/postgres): ```toml -# Cargo.toml [dependencies] -postgres = "0.11" +postgres = "0.12" ``` ## Overview diff --git a/src/lib.rs b/src/lib.rs index 3bc6fa7c..02e783be 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -68,7 +68,7 @@ //! .unwrap(); //! } //! ``` -#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.11.11")] +#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.12.0")] #![warn(missing_docs)] #![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy