Skip to content

Commit 26175c8

Browse files
committed
Merge branch 'release-v0.5.1' into release
2 parents 3ee6a35 + c00466b commit 26175c8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "postgres_large_object"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Large object support for rust-postgres"
77
repository = "https://github.com/sfackler/rust-postgres-large-object"
8-
documentation = "https://sfackler.github.io/rust-postgres-large-object/doc/v0.5.0/postgres_large_object"
8+
documentation = "https://sfackler.github.io/rust-postgres-large-object/doc/v0.5.1/postgres_large_object"
99
readme = "README.md"
1010
keywords = ["database", "sql", "postgres"]
1111

1212
[dependencies]
13-
postgres = "0.12"
13+
postgres = ">= 0.12, < 0.14"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A crate providing access to the Postgres large object API.
44

55
[![Build Status](https://travis-ci.org/sfackler/rust-postgres-large-object.svg?branch=master)](https://travis-ci.org/sfackler/rust-postgres-large-object)
66

7-
[Documentation](https://sfackler.github.io/rust-postgres-large-object/doc/v0.5.0/postgres_large_object)
7+
[Documentation](https://sfackler.github.io/rust-postgres-large-object/doc/v0.5.1/postgres_large_object)
88

99
# Example
1010

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//! io::copy(&mut large_object, &mut file).unwrap();
3131
//! }
3232
//! ```
33-
#![doc(html_root_url="https://sfackler.github.io/rust-postgres-large-object/doc/v0.5.0")]
33+
#![doc(html_root_url="https://sfackler.github.io/rust-postgres-large-object/doc/v0.5.1")]
3434

3535
extern crate postgres;
3636

0 commit comments

Comments
 (0)