diff options
author | JoeyHess <> | 2021-01-12 17:38:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2021-01-12 17:38:00 (GMT) |
commit | 79c6772c610c5e47eae617bec0258a03ae2123a3 (patch) | |
tree | 6d7ed5eaa7cf53f09793e9fadb03c687c5f5160e | |
parent | 39d45607d593644ca316d83bbe247da81d309c41 (diff) |
-rwxr-xr-x | CHANGELOG | 6 | ||||
-rw-r--r-- | Network/HTTP/Client/Restricted.hs | 9 | ||||
-rw-r--r-- | http-client-restricted.cabal | 4 |
3 files changed, 15 insertions, 4 deletions
@@ -1,3 +1,9 @@ +http-client-restricted (0.0.4) unstable; urgency=medium + + * Update to http-client 0.7. + + -- Joey Hess <id@joeyh.name> Tue, 12 Jan 2021 13:37:00 -0400 + http-client-restricted (0.0.3) unstable; urgency=medium * Update to http-client 0.6. diff --git a/Network/HTTP/Client/Restricted.hs b/Network/HTTP/Client/Restricted.hs index 50e0d7c..f9b72fa 100644 --- a/Network/HTTP/Client/Restricted.hs +++ b/Network/HTTP/Client/Restricted.hs @@ -1,4 +1,10 @@ {- | Restricted `ManagerSettings` for <https://haskell-lang.org/library/http-client> + - + - Copyright 2018 Joey Hess <id@joeyh.name> + - + - Portions from http-client-tls Copyright (c) 2013 Michael Snoyman + - + - License: MIT -} {-# LANGUAGE ScopedTypeVariables, DeriveDataTypeable, LambdaCase, PatternGuards #-} @@ -15,8 +21,7 @@ module Network.HTTP.Client.Restricted ( ) where import Network.HTTP.Client -import Network.HTTP.Client.Internal - (ManagerSettings(..), Connection, runProxyOverride, makeConnection) +import Network.HTTP.Client.Internal (ManagerSettings(..), Connection, runProxyOverride) import Network.HTTP.Client.TLS (mkManagerSettingsContext) import Network.Socket import Network.BSD (getProtocolNumber) diff --git a/http-client-restricted.cabal b/http-client-restricted.cabal index b828a7c..d1be4ab 100644 --- a/http-client-restricted.cabal +++ b/http-client-restricted.cabal @@ -1,5 +1,5 @@ Name: http-client-restricted -Version: 0.0.3 +Version: 0.0.4 Cabal-Version: >= 1.10 Maintainer: Joey Hess <id@joeyh.name> Author: Joey Hess @@ -27,7 +27,7 @@ Library Network.HTTP.Client.Restricted Build-Depends: base >= 4.11.1.0 && < 5.0 - , http-client >= 0.6 && < 0.7 + , http-client >= 0.7 && < 0.8 , http-client-tls >= 0.3.2 && < 0.4 , connection >= 0.2.5 , data-default |