diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 435ac9d8a..54f815e99 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "postgres" -version = "0.14.2" +version = "0.15.0" authors = ["Steven Fackler "] license = "MIT" description = "A native PostgreSQL driver" repository = "https://github.com/sfackler/rust-postgres" -documentation = "https://docs.rs/postgres/0.14.2/postgres" +documentation = "https://docs.rs/postgres/0.15.0/postgres" readme = "../README.md" keywords = ["database", "postgres", "postgresql", "sql"] include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"] @@ -67,7 +67,7 @@ schannel = { version = "0.1", optional = true } security-framework = { version = "0.1.2", optional = true } postgres-protocol = { version = "0.3.0", path = "../postgres-protocol" } -postgres-shared = { version = "0.3.0", path = "../postgres-shared" } +postgres-shared = { version = "0.4.0", path = "../postgres-shared" } [dev-dependencies] hex = "0.2" diff --git a/postgres/src/lib.rs b/postgres/src/lib.rs index 47fcfffcd..f84e1212f 100644 --- a/postgres/src/lib.rs +++ b/postgres/src/lib.rs @@ -66,7 +66,7 @@ //! .unwrap(); //! } //! ``` -#![doc(html_root_url="https://docs.rs/postgres/0.14.2")] +#![doc(html_root_url="https://docs.rs/postgres/0.15.0")] #![warn(missing_docs)] #![allow(unknown_lints, needless_lifetimes, doc_markdown)] // for clippy