Skip to content

Commit 07f3dc0

Browse files
committed
Release v0.12.0
1 parent 215c16b commit 07f3dc0

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
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.11.11"
3+
version = "0.12.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.11.11/postgres"
8+
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.12.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-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# Rust-Postgres
22
A native PostgreSQL driver for Rust.
33

4-
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.11.11/postgres)
4+
[Documentation](https://sfackler.github.io/rust-postgres/doc/v0.12.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
10-
# Cargo.toml
1110
[dependencies]
12-
postgres = "0.11"
11+
postgres = "0.12"
1312
```
1413

1514
## Overview

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
//! .unwrap();
6969
//! }
7070
//! ```
71-
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.11.11")]
71+
#![doc(html_root_url="https://sfackler.github.io/rust-postgres/doc/v0.12.0")]
7272
#![warn(missing_docs)]
7373
#![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy
7474

0 commit comments

Comments
 (0)