http-client-tls 0.3.6.3 → 0.3.6.4
raw patch · 3 files changed
+7/−3 lines, 3 filesdep +data-defaultdep −data-default-classdep ~tls
Dependencies added: data-default
Dependencies removed: data-default-class
Dependency ranges changed: tls
Files
- ChangeLog.md +4/−0
- Network/HTTP/Client/TLS.hs +1/−1
- http-client-tls.cabal +2/−2
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for http-client-tls +## 0.3.6.4++* data-default-class -> data-default [#546](https://github.com/snoyberg/http-client/pull/546/files)+ ## 0.3.6.3 * catching up to tls 1.8.0 [#515](https://github.com/snoyberg/http-client/pull/515)
Network/HTTP/Client/TLS.hs view
@@ -26,7 +26,7 @@ import Control.Applicative ((<|>)) import Control.Arrow (first) import System.Environment (getEnvironment)-import Data.Default.Class+import Data.Default import Network.HTTP.Client hiding (host, port) import Network.HTTP.Client.Internal hiding (host, port) import Control.Exception
http-client-tls.cabal view
@@ -1,5 +1,5 @@ name: http-client-tls-version: 0.3.6.3+version: 0.3.6.4 synopsis: http-client backend using the connection package and tls library description: Hackage documentation generation is not reliable. For up to date documentation, please see: <https://www.stackage.org/package/http-client-tls>. homepage: https://github.com/snoyberg/http-client@@ -17,7 +17,7 @@ exposed-modules: Network.HTTP.Client.TLS other-extensions: ScopedTypeVariables build-depends: base >= 4.10 && < 5- , data-default-class+ , data-default , http-client >= 0.7.11 , crypton-connection , network