Skip to content

Commit 374fadb

Browse files
committed
Release tokio-postgres-openssl v0.1.0-rc.1
1 parent db6dde8 commit 374fadb

File tree

6 files changed

+22
-4
lines changed

6 files changed

+22
-4
lines changed

tokio-postgres-openssl/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
## [Unreleased]
4+
5+
## v0.1.0-rc.1 - 2019-03-06
6+
7+
* Initial release.
8+
9+
[Unreleased]: https://github.com/sfackler/rust-postgres/compare/tokio-postgres-openssl-v0.1.0-rc.1...master

tokio-postgres-openssl/Cargo.toml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[package]
22
name = "tokio-postgres-openssl"
3-
version = "0.1.0"
3+
version = "0.1.0-rc.1"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
6+
license = "MIT/Apache-2.0"
7+
description = "TLS support for tokio-postgres via openssl"
8+
repository = "https://github.com/sfackler/rust-postgres"
9+
readme = "../README.md"
10+
11+
[badges]
12+
circle-ci = { repository = "sfackler/rust-postgres" }
613

714
[features]
815
default = ["runtime"]

tokio-postgres-openssl/LICENSE-APACHE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../tokio-postgres/LICENSE-APACHE

tokio-postgres-openssl/LICENSE-MIT

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../tokio-postgres/LICENSE-MIT

tokio-postgres-openssl/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//!
1818
//! // ...
1919
//! ```
20-
20+
#![doc(html_root_url = "https://docs.rs/tokio-postgres-openssl/0.1.0-rc.1")]
2121
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
2222

2323
use futures::{try_ready, Async, Future, Poll};

tokio-postgres/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
## [Unreleased]
44

5-
## [v0.4.0-rc.2] - 2019-05-03
5+
## [v0.4.0-rc.2] - 2019-03-05
66

77
### Fixed
88

99
* Fixed Cargo features to actually enable the functionality they claim to.
1010

11-
## [v0.4.0-rc.1] - 2019-05-03
11+
## [v0.4.0-rc.1] - 2019-03-05
1212

1313
### Changed
1414

0 commit comments

Comments
 (0)