From 374fadb816d2f96bc14ff951560136685e00883c Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 6 Mar 2019 21:05:04 -0800 Subject: [PATCH] Release tokio-postgres-openssl v0.1.0-rc.1 --- tokio-postgres-openssl/CHANGELOG.md | 9 +++++++++ tokio-postgres-openssl/Cargo.toml | 9 ++++++++- tokio-postgres-openssl/LICENSE-APACHE | 1 + tokio-postgres-openssl/LICENSE-MIT | 1 + tokio-postgres-openssl/src/lib.rs | 2 +- tokio-postgres/CHANGELOG.md | 4 ++-- 6 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 tokio-postgres-openssl/CHANGELOG.md create mode 120000 tokio-postgres-openssl/LICENSE-APACHE create mode 120000 tokio-postgres-openssl/LICENSE-MIT diff --git a/tokio-postgres-openssl/CHANGELOG.md b/tokio-postgres-openssl/CHANGELOG.md new file mode 100644 index 00000000..f0c20b8c --- /dev/null +++ b/tokio-postgres-openssl/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log + +## [Unreleased] + +## v0.1.0-rc.1 - 2019-03-06 + +* Initial release. + +[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-openssl-v0.1.0-rc.1...master diff --git a/tokio-postgres-openssl/Cargo.toml b/tokio-postgres-openssl/Cargo.toml index afba5cdc..88a14074 100644 --- a/tokio-postgres-openssl/Cargo.toml +++ b/tokio-postgres-openssl/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "tokio-postgres-openssl" -version = "0.1.0" +version = "0.1.0-rc.1" authors = ["Steven Fackler "] edition = "2018" +license = "MIT/Apache-2.0" +description = "TLS support for tokio-postgres via openssl" +repository = "https://github.com/sfackler/rust-postgres" +readme = "../README.md" + +[badges] +circle-ci = { repository = "sfackler/rust-postgres" } [features] default = ["runtime"] diff --git a/tokio-postgres-openssl/LICENSE-APACHE b/tokio-postgres-openssl/LICENSE-APACHE new file mode 120000 index 00000000..b9e46b0f --- /dev/null +++ b/tokio-postgres-openssl/LICENSE-APACHE @@ -0,0 +1 @@ +../tokio-postgres/LICENSE-APACHE \ No newline at end of file diff --git a/tokio-postgres-openssl/LICENSE-MIT b/tokio-postgres-openssl/LICENSE-MIT new file mode 120000 index 00000000..162832a4 --- /dev/null +++ b/tokio-postgres-openssl/LICENSE-MIT @@ -0,0 +1 @@ +../tokio-postgres/LICENSE-MIT \ No newline at end of file diff --git a/tokio-postgres-openssl/src/lib.rs b/tokio-postgres-openssl/src/lib.rs index 12b91330..f3c336cd 100644 --- a/tokio-postgres-openssl/src/lib.rs +++ b/tokio-postgres-openssl/src/lib.rs @@ -17,7 +17,7 @@ //! //! // ... //! ``` - +#![doc(html_root_url = "https://docs.rs/tokio-postgres-openssl/0.1.0-rc.1")] #![warn(rust_2018_idioms, clippy::all, missing_docs)] use futures::{try_ready, Async, Future, Poll}; diff --git a/tokio-postgres/CHANGELOG.md b/tokio-postgres/CHANGELOG.md index 375e1b27..22b5197b 100644 --- a/tokio-postgres/CHANGELOG.md +++ b/tokio-postgres/CHANGELOG.md @@ -2,13 +2,13 @@ ## [Unreleased] -## [v0.4.0-rc.2] - 2019-05-03 +## [v0.4.0-rc.2] - 2019-03-05 ### Fixed * Fixed Cargo features to actually enable the functionality they claim to. -## [v0.4.0-rc.1] - 2019-05-03 +## [v0.4.0-rc.1] - 2019-03-05 ### Changed