Skip to content

Commit

Permalink
Release postgres-protocol v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed May 2, 2017
1 parent 1672bdd commit 29cac44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions postgres-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "postgres-protocol"
version = "0.2.1"
version = "0.2.2"
authors = ["Steven Fackler <[email protected]>"]
description = "Low level Postgres protocol APIs"
license = "MIT/Apache-2.0"
repository = "https://github.com/sfackler/rust-postgres-protocol"
documentation = "https://docs.rs/postgres-protocol/0.2.1/postgres_protocol"
readme = "README.md"
documentation = "https://docs.rs/postgres-protocol/0.2.2/postgres_protocol"
readme = "../README.md"

[dependencies]
byteorder = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion postgres-protocol/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//!
//! This library assumes that the `client_encoding` backend parameter has been
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
#![doc(html_root_url="https://docs.rs/postgres-protocol/0.2.1")]
#![doc(html_root_url="https://docs.rs/postgres-protocol/0.2.2")]
#![warn(missing_docs)]
extern crate byteorder;
extern crate fallible_iterator;
Expand Down

0 comments on commit 29cac44

Please sign in to comment.