Skip to content

Commit 7141f43

Browse files
committed
Merge branch 'release-v0.3.3' into release
2 parents f0c10b3 + 5e9d8f5 commit 7141f43

File tree

5 files changed

+6
-27
lines changed

5 files changed

+6
-27
lines changed

.travis.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,10 @@ language: rust
22
rust:
33
- nightly
44
- beta
5+
- stable
56
addons:
67
postgresql: 9.4
78
script:
89
- cargo test
910
- sudo service postgresql stop && sudo service postgresql start 9.1
1011
- cargo test
11-
- cargo doc --no-deps
12-
after_success:
13-
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_RUST_VERSION == "nightly" && ./.travis/update_docs.sh
14-
env:
15-
global:
16-
secure: NwuXXkfdUD7PEIL9gyvyob/yaGry14QMhiYOrEWPMDuDBrJsjwYJJFgYsyX3HJ+TNpLt/kdjpYU4Gr2fn4F0OUDM1fHzJtsc1wXgxTaLvIK7Jdu1nNFMtII7KZgRHvD7RQs/PM4xAPLHJYbdW5wdUyVE1YQ2DktIfI7rs9haWqU=

.travis/update_docs.sh

Lines changed: 0 additions & 16 deletions
This file was deleted.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "postgres_large_object"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
authors = ["Steven Fackler <sfackler@gmail.com>"]
55
license = "MIT"
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.3.2/postgres_large_object"
8+
documentation = "https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.3/postgres_large_object"
99
readme = "README.md"
1010
keywords = ["database", "sql", "postgres"]
1111

1212
[dependencies]
13-
postgres = "0.9"
13+
postgres = ">= 0.9, < 0.11"
1414
debug-builders = "0.1"

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.3.2/postgres_large_object).
7+
[Documentation](https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.3/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.3.2")]
33+
#![doc(html_root_url="https://sfackler.github.io/rust-postgres-large-object/doc/v0.3.3")]
3434

3535
extern crate postgres;
3636
extern crate debug_builders;

0 commit comments

Comments
 (0)