http-client-streams 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+8/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
http-client-streams.cabal view
@@ -1,5 +1,5 @@ name: http-client-streams-version: 0.1.0.0+version: 0.1.0.1 synopsis: http-client for io-streams supporting openssl description: Thin io-streams wrapper for http-client w/ openssl support license: BSD3
src/System/IO/Streams/HTTP.hs view
@@ -4,14 +4,14 @@ -- > {-# LANGUAGE OverloadedStrings #-} -- > module Main where -- > --- > import OpenSSL ( withOpenSSL )--- > import OpenSSL.Session ( context ) -- > import qualified System.IO.Streams as Streams -- > import System.IO.Streams.HTTP ( opensslManagerSettings -- > , parseUrl -- > , withManager -- > , withHTTP -- > , responseBody+-- > , withOpenSSL+-- > , context -- > ) -- > -- > ------------------------------------------------------------------------------@@ -33,6 +33,8 @@ -- $httpclient module Network.HTTP.Client , module Network.HTTP.Client.OpenSSL+ , module OpenSSL+ , module OpenSSL.Session -- * io-streams Interface , withHTTP , streamN@@ -46,6 +48,9 @@ import Data.Int ( Int64 ) import Network.HTTP.Client import Network.HTTP.Client.OpenSSL++import OpenSSL+import OpenSSL.Session import System.IO ( stdout ) import System.IO.Streams ( InputStream