Skip to content

Commit 384b4b1

Browse files
committed
Release v0.2.1
1 parent 483cd64 commit 384b4b1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "postgres-binary-copy"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Steven Fackler <sfackler@gmail.com>"]
55
license = "MIT"
66
description = "Support for binary-format COPY query execution with postgres"
7-
documentation = "https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.2.0/postgres_binary_copy"
7+
documentation = "https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.2.1/postgres_binary_copy"
88
repository = "https://github.com/sfackler/rust-postgres-binary-copy"
99
readme = "README.md"
1010
keywords = ["database", "sql", "postgres", "copy"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Support for binary-format `COPY` query execution with
66
[rust-postgres](https://github.com/sfackler/rust-postgres).
77

8-
[Documentation](https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.2.0/postgres_binary_copy)
8+
[Documentation](https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.2.1/postgres_binary_copy)
99

1010
## Example
1111

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
//! stmt.copy_in(&[], &mut reader).unwrap();
2828
//! }
2929
//! ```
30-
#![doc(html_root_url="https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.2.0")]
30+
#![doc(html_root_url="https://sfackler.github.io/rust-postgres-binary-copy/doc/v0.2.1")]
3131
#![warn(missing_docs)]
3232
extern crate byteorder;
3333
extern crate postgres;

0 commit comments

Comments
 (0)