Release v0.13.0

This commit is contained in:
Steven Fackler 2016-11-05 22:25:24 -07:00
parent fdb16ca9ca
commit 88aff10e62
3 changed files with 5 additions and 7 deletions

View File

@ -1,11 +1,11 @@
[package] [package]
name = "postgres" name = "postgres"
version = "0.12.0" version = "0.13.0"
authors = ["Steven Fackler <sfackler@gmail.com>"] authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT" license = "MIT"
description = "A native PostgreSQL driver" description = "A native PostgreSQL driver"
repository = "https://github.com/sfackler/rust-postgres" 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" readme = "README.md"
keywords = ["database", "postgres", "postgresql", "sql"] keywords = ["database", "postgres", "postgresql", "sql"]
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"] include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]

View File

@ -1,14 +1,14 @@
# Rust-Postgres # Rust-Postgres
A native PostgreSQL driver for Rust. 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) [![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): You can integrate Rust-Postgres into your project through the [releases on crates.io](https://crates.io/crates/postgres):
```toml ```toml
[dependencies] [dependencies]
postgres = "0.12" postgres = "0.13"
``` ```
## Overview ## Overview

View File

@ -62,13 +62,11 @@
//! # #[cfg(feature = "with-openssl")] //! # #[cfg(feature = "with-openssl")]
//! fn main() { //! fn main() {
//! let openssl = OpenSsl::new().unwrap(); //! 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)) //! let conn = Connection::connect("postgres://postgres@localhost", TlsMode::Require(&openssl))
//! .unwrap(); //! .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)] #![warn(missing_docs)]
#![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy #![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy