Skip to content

Commit e434aad

Browse files
committed
Release tokio-postgres-native-tls v0.1.0-rc.1
1 parent e12902a commit e434aad

File tree

5 files changed

+20
-2
lines changed

5 files changed

+20
-2
lines changed
+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-native-tls-v0.1.0-rc.1...master

tokio-postgres-native-tls/Cargo.toml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[package]
22
name = "tokio-postgres-native-tls"
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 native-tls"
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"]
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../tokio-postgres/LICENSE-APACHE

tokio-postgres-native-tls/LICENSE-MIT

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

tokio-postgres-native-tls/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
//!
2323
//! // ...
2424
//! ```
25-
25+
#![doc(html_root_url = "https://docs.rs/tokio-postgres-native-tls/0.1.0-rc.1")]
2626
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
2727

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

0 commit comments

Comments
 (0)