From cf1a60cb3a6e954e80eec8dd635114613ac41251 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 1 Aug 2019 15:41:14 -0700 Subject: [PATCH] prepare awc release --- .travis.yml | 2 ++ actix-http/Cargo.toml | 2 +- awc/CHANGES.md | 5 ++++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 97a05cc96..08db4d0a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,6 +37,8 @@ script: - cargo update - cargo check --all --no-default-features - cargo test --all-features --all -- --nocapture + - cd actix-http; cargo test --no-default-features --features="rust-tls" -- --nocapture; cd .. + - cd awc; cargo test --no-default-features --features="rust-tls" -- --nocapture; cd .. # Upload docs after_success: diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index f54fc9a22..50b52d126 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -102,7 +102,7 @@ chrono = "0.4.6" [dev-dependencies] actix-rt = "0.2.2" -actix-server = { version = "0.6.0", features=["ssl"] } +actix-server = { version = "0.6.0", features=["ssl", "rust-tls"] } actix-connect = { version = "0.2.0", features=["ssl"] } actix-http-test = { version = "0.2.4", features=["ssl"] } env_logger = "0.6" diff --git a/awc/CHANGES.md b/awc/CHANGES.md index d9b6db41a..33d47fff6 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -1,9 +1,12 @@ # Changes -## [0.2.3] - 2019-07-xx +## [0.2.3] - 2019-08-01 + +### Added * Add `rustls` support + ## [0.2.2] - 2019-07-01 ### Changed