Skip to content

Commit 29cac44

Browse files
committed
Release postgres-protocol v0.2.2
1 parent 1672bdd commit 29cac44

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

postgres-protocol/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "postgres-protocol"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Steven Fackler <[email protected]>"]
55
description = "Low level Postgres protocol APIs"
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/sfackler/rust-postgres-protocol"
8-
documentation = "https://docs.rs/postgres-protocol/0.2.1/postgres_protocol"
9-
readme = "README.md"
8+
documentation = "https://docs.rs/postgres-protocol/0.2.2/postgres_protocol"
9+
readme = "../README.md"
1010

1111
[dependencies]
1212
byteorder = "1.0"

postgres-protocol/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! This library assumes that the `client_encoding` backend parameter has been
1111
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
12-
#![doc(html_root_url="https://docs.rs/postgres-protocol/0.2.1")]
12+
#![doc(html_root_url="https://docs.rs/postgres-protocol/0.2.2")]
1313
#![warn(missing_docs)]
1414
extern crate byteorder;
1515
extern crate fallible_iterator;

0 commit comments

Comments
 (0)