From 9c1068253f5862cf9597c2e95d95ac83e0eee4bc Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 12 Nov 2016 19:04:35 +0000 Subject: [PATCH] Release v0.13.1 --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 060760c5..86104ce0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.13.0" +version = "0.13.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.13.0/postgres" +documentation = "https://sfackler.github.io/rust-postgres/doc/v0.13.1/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 7d8b8e45..8e6d1fe5 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.13.0/postgres) +[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.13.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 59320bab..23054d12 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -49,7 +49,7 @@ //! //! ## Examples //! -//! Connecting using native-tls: +//! Connecting using `native-tls`: //! //! ```no_run //! extern crate postgres; @@ -66,7 +66,7 @@ //! .unwrap(); //! } //! ``` -#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.13.0")] +#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.13.1")] #![warn(missing_docs)] #![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy