Release tokio-postgres-openssl v0.1.0-rc.1

This commit is contained in:
Steven Fackler 2019-03-06 21:05:04 -08:00
parent db6dde8c7d
commit 374fadb816
6 changed files with 22 additions and 4 deletions

View File

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

View File

@ -1,8 +1,15 @@
[package]
name = "tokio-postgres-openssl"
version = "0.1.0"
version = "0.1.0-rc.1"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"]

View File

@ -0,0 +1 @@
../tokio-postgres/LICENSE-APACHE

View File

@ -0,0 +1 @@
../tokio-postgres/LICENSE-MIT

View File

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

View File

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