Skip to content

Commit 88aff10

Browse files
committed
Release v0.13.0
1 parent fdb16ca commit 88aff10

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "postgres"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT"
66
description = "A native PostgreSQL driver"
77
repository = "https://github.com/sfackler/rust-postgres"
8-
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.12.0/postgres"
8+
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.13.0/postgres"
99
readme = "README.md"
1010
keywords = ["database", "postgres", "postgresql", "sql"]
1111
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Rust-Postgres
22
A native PostgreSQL driver for Rust.
33

4-
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.12.0/postgres)
4+
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.13.0/postgres)
55

66
[![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)
77

88
You can integrate Rust-Postgres into your project through the [releases on crates.io](https://crates.io/crates/postgres):
99
```toml
1010
[dependencies]
11-
postgres = "0.12"
11+
postgres = "0.13"
1212
```
1313

1414
## Overview

src/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,11 @@
6262
//! # #[cfg(feature = "with-openssl")]
6363
//! fn main() {
6464
//! let openssl = OpenSsl::new().unwrap();
65-
//! // Configure the `SslContext` with the `.context()` and `.context_mut()` methods
66-
//!
6765
//! let conn = Connection::connect("postgres://postgres@localhost", TlsMode::Require(&openssl))
6866
//! .unwrap();
6967
//! }
7068
//! ```
71-
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.12.0")]
69+
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.13.0")]
7270
#![warn(missing_docs)]
7371
#![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy
7472

0 commit comments

Comments
 (0)