diff --git a/CHANGES.md b/CHANGES.md index 80c3888..403924a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +## v0.2.2 (2023-02-17) + +* Update to tls 0.16.0 package split: tls.lwt is now tls-lwt (#17 by @hannesm) + ## v0.2.1 (2023-01-02) * Fix ownership of buffers given by the HTTP scheduler (#16 by @dinosaure) diff --git a/http-lwt-client.opam b/http-lwt-client.opam index 7d8d937..9e224d3 100644 --- a/http-lwt-client.opam +++ b/http-lwt-client.opam @@ -15,7 +15,8 @@ depends: [ "base64" {>= "3.1.0"} "faraday-lwt-unix" "httpaf" {>= "0.7.0"} - "tls" {>= "0.14.0"} + "tls" {>= "0.16.0"} + "tls-lwt" {>= "0.16.0"} "ca-certs" "fmt" "bos" diff --git a/src/dune b/src/dune index c0c5e9f..50d682c 100644 --- a/src/dune +++ b/src/dune @@ -1,5 +1,5 @@ (library (name http_lwt_client) (public_name http-lwt-client) - (libraries faraday-lwt-unix h2 httpaf lwt.unix tls.lwt ca-certs base64 + (libraries faraday-lwt-unix h2 httpaf lwt.unix tls tls-lwt ca-certs base64 logs happy-eyeballs-lwt))