Release postgres-protocol v0.2.2

This commit is contained in:
Steven Fackler 2017-05-02 08:53:28 -07:00
parent 1672bdd54d
commit 29cac442dd
2 changed files with 4 additions and 4 deletions

View File

@ -1,12 +1,12 @@
[package]
name = "postgres-protocol"
version = "0.2.1"
version = "0.2.2"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"

View File

@ -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;