diff --git a/CHANGELOG.md b/CHANGELOG.md index 464e1f54..f6b07bfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v0.8.0] - 2019-12-10 + +### Changed + +* Upgraded to hyper 0.13 + ## [v0.8.0-alpha.4] - 2019-09-04 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 44009fe1..6bc3db24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper-openssl" -version = "0.8.0-alpha.4" +version = "0.8.0" authors = ["Steven Fackler "] edition = "2018" description = "Hyper TLS support via OpenSSL" @@ -18,7 +18,7 @@ runtime = ["hyper/runtime"] antidote = "1.0.0" bytes = "0.5" http = "0.2" -hyper = { version = "=0.13.0-alpha.4", default-features = false } +hyper = { version = "0.13", default-features = false } linked_hash_set = "0.1" once_cell = "1.0" openssl = "0.10.19" @@ -27,9 +27,6 @@ tokio = "0.2" tokio-openssl = "0.4" [dev-dependencies] -hyper = "=0.13.0-alpha.4" +hyper = "0.13" tokio = { version = "0.2", features = ["full"] } futures = "0.3" - -[patch.crates-io] -hyper = { git = "https://github.com/hyperium/hyper" }