From eaab86f3446e485f6f659c1cca7ab04670cb6db0 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Tue, 12 Sep 2017 21:04:59 -0400 Subject: [PATCH] Release postgres-protocol 0.3.1 --- postgres-protocol/Cargo.toml | 3 +-- postgres-protocol/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/postgres-protocol/Cargo.toml b/postgres-protocol/Cargo.toml index aa212c06..59dba320 100644 --- a/postgres-protocol/Cargo.toml +++ b/postgres-protocol/Cargo.toml @@ -1,11 +1,10 @@ [package] name = "postgres-protocol" -version = "0.3.0" +version = "0.3.1" 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.3.0/postgres_protocol" readme = "../README.md" [dependencies] diff --git a/postgres-protocol/src/lib.rs b/postgres-protocol/src/lib.rs index 3cd5b8cd..f49165ff 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.3.0")] +#![doc(html_root_url="https://docs.rs/postgres-protocol/0.3")] #![warn(missing_docs)] extern crate base64; extern crate byteorder;