From 29cac442dd5cce630a0e039cd906e16de1c1eae2 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Tue, 2 May 2017 08:53:28 -0700 Subject: [PATCH] Release postgres-protocol v0.2.2 --- postgres-protocol/Cargo.toml | 6 +++--- postgres-protocol/src/lib.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index 52fdac9cd..1ffd6cf07 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "postgres-protocol" -version = "0.2.1" +version = "0.2.2" authors = ["Steven Fackler "] 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" diff --git a/postgres-protocol/src/lib.rs b/postgres-protocol/src/lib.rs index b5941776f..3898d6e9e 100644 --- a/postgres-protocol/src/lib.rs +++ b/postgres-protocol/src/lib.rs @@ -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;