diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 726a6d666..d9b26e453 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## [1.0.1] - 2019-12-15 + +* Fix compilation with default features off + + ## [1.0.0] - 2019-12-13 * Release diff --git a/awc/Cargo.toml b/awc/Cargo.toml index 26d1e85d2..863b7a1e4 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awc" -version = "1.0.0" +version = "1.0.1" authors = ["Nikolay Kim "] description = "Actix http client." readme = "README.md" @@ -22,7 +22,7 @@ path = "src/lib.rs" features = ["openssl", "rustls", "compress"] [features] -default = [] #"compress"] +default = ["compress"] # openssl openssl = ["open-ssl", "actix-http/openssl"]