Skip to content

Commit

Permalink
Release v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Nov 6, 2016
1 parent fdb16ca commit 88aff10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 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.12.0"
version = "0.13.0"
authors = ["Steven Fackler <[email protected]>"]
license = "MIT"
description = "A native PostgreSQL driver"
repository = "https://github.com/sfackler/rust-postgres"
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.12.0/postgres"
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.13.0/postgres"
readme = "README.md"
keywords = ["database", "postgres", "postgresql", "sql"]
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Rust-Postgres
A native PostgreSQL driver for Rust.

[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.12.0/postgres)
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.13.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
[dependencies]
postgres = "0.12"
postgres = "0.13"
```

## Overview
Expand Down
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,11 @@
//! # #[cfg(feature = "with-openssl")]
//! fn main() {
//! let openssl = OpenSsl::new().unwrap();
//! // Configure the `SslContext` with the `.context()` and `.context_mut()` methods
//!
//! let conn = Connection::connect("postgres://postgres@localhost", TlsMode::Require(&openssl))
//! .unwrap();
//! }
//! ```
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.12.0")]
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.13.0")]
#![warn(missing_docs)]
#![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy

Expand Down

0 comments on commit 88aff10

Please sign in to comment.