Skip to content

Commit

Permalink
Release v0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Nov 12, 2016
1 parent bdfd2fd commit 9c10682
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "postgres"
version = "0.13.0"
version = "0.13.1"
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.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"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
//!
//! ## Examples
//!
//! Connecting using native-tls:
//! Connecting using `native-tls`:
//!
//! ```no_run
//! extern crate postgres;
Expand All @@ -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

Expand Down

0 comments on commit 9c10682

Please sign in to comment.