Skip to content

Commit ae6d844

Browse files
committed
v0.1.7.1: drop support for GHC 7
1 parent 264d17d commit ae6d844

19 files changed

+35
-42
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
See also http://pvp.haskell.org/faq
22

3+
### 0.1.7.1
4+
5+
* Drop support for GHC 7.
6+
7+
Tested with GHC 8.0 - 9.12.2.
8+
39
### 0.1.7.0
410

511
* New function `voidContextSSL` for creating a _void_ SSL Context which rejects any TLS handshake attempts

http-io-streams.cabal

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: http-io-streams
3-
version: 0.1.7.0
3+
version: 0.1.7.1
44

55
synopsis: HTTP and WebSocket client based on io-streams
66
description:
@@ -61,22 +61,22 @@ flag fast-xor
6161

6262
common settings
6363
build-depends:
64-
, base >= 4.5 && < 5
64+
, base >= 4.9 && < 5
6565
, attoparsec ^>= 0.13.2.2 || ^>= 0.14.4
6666
, base64-bytestring ^>= 1.2.1.0
6767
, blaze-builder ^>= 0.4.1.0
6868
, bytestring >= 0.10.0.0 && < 0.13
6969
, case-insensitive ^>= 1.2.0.11
70-
, containers >= 0.5.0.0 && < 0.8
71-
, directory ^>= 1.2.0.1 || ^>= 1.3.0.0
70+
, containers >= 0.5.7.1 && < 0.8
71+
, directory ^>= 1.2.6.2 || ^>= 1.3.0.0
7272
, HsOpenSSL ^>= 0.11.2
7373
, io-streams ^>= 1.5.0.1
7474
, mtl ^>= 2.2.2 || ^>= 2.3.1
75-
, network ^>= 2.6.0.0 || ^>= 2.7.0.0 || ^>= 2.8.0.0 || ^>= 3.0.0.0 || ^>= 3.1.0.0 || ^>= 3.2.0.0
76-
, network-uri ^>= 2.6.0.0
75+
, network ^>= 2.6.3.1 || ^>= 2.7.0.0 || ^>= 2.8.0.0 || ^>= 3.0.0.0 || ^>= 3.1.0.0 || ^>= 3.2.0.0
76+
, network-uri ^>= 2.6.1.0
7777
, openssl-streams ^>= 1.2.1.3
7878
, text ^>= 1.2.3.0 || ^>= 2.0 || ^>= 2.1
79-
, transformers ^>= 0.3.0.0 || ^>= 0.4.2.0 || ^>= 0.5.2.0 || ^>= 0.6.0.4
79+
, transformers ^>= 0.5.2.0 || ^>= 0.6.0.4
8080

8181
default-language: Haskell2010
8282
other-extensions:
@@ -114,7 +114,7 @@ library
114114
brotli-streams ^>= 0.0.0.0
115115

116116
build-depends:
117-
, binary ^>= 0.7.1 || ^>= 0.8.3
117+
, binary ^>= 0.8.3.0
118118
, cryptohash-sha1 ^>= 0.11.100
119119

120120
hs-source-dirs: http-streams/lib

http-streams/lib/Network/Http/Inconvenience.hs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,6 @@ import System.IO.Streams (InputStream, OutputStream)
7676
import qualified System.IO.Streams as Streams
7777
import System.IO.Unsafe (unsafePerformIO)
7878

79-
#if !MIN_VERSION_base(4,8,0)
80-
import Data.Monoid (Monoid (..), mappend)
81-
#endif
82-
8379
import Network.Http.Connection
8480
import Network.Http.RequestBuilder
8581
import Network.Http.Types

tests/ActualSnippet.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
--
1010

1111
{-# LANGUAGE OverloadedStrings #-}
12-
{-# OPTIONS -fno-warn-unused-imports #-}
12+
{-# OPTIONS -Wno-unused-imports #-}
1313

1414
module Main where
1515

tests/BaselinePoint.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
{-# LANGUAGE OverloadedStrings #-}
1212
{-# LANGUAGE PackageImports #-}
13-
{-# OPTIONS -fno-warn-unused-do-bind #-}
14-
{-# OPTIONS -fno-warn-unused-imports #-}
13+
{-# OPTIONS -Wno-unused-do-bind #-}
14+
{-# OPTIONS -Wno-unused-imports #-}
1515

1616
module BaselinePoint (series, actual) where
1717

tests/BasicSnippet.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
--
1010

1111
{-# LANGUAGE OverloadedStrings #-}
12-
{-# OPTIONS -fno-warn-unused-imports #-}
12+
{-# OPTIONS -Wno-unused-imports #-}
1313

1414
module Snippet where
1515

tests/ComparisonBenchmark.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
--
1010

1111
{-# LANGUAGE OverloadedStrings #-}
12-
{-# OPTIONS -fno-warn-unused-do-bind #-}
12+
{-# OPTIONS -Wno-unused-do-bind #-}
1313

1414
import Criterion.Main
1515
import GHC.Conc

tests/CurrentPoint.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
{-# LANGUAGE OverloadedStrings #-}
1212
{-# LANGUAGE PackageImports #-}
13-
{-# OPTIONS -fno-warn-unused-do-bind #-}
14-
{-# OPTIONS -fno-warn-unused-imports #-}
13+
{-# OPTIONS -Wno-unused-do-bind #-}
14+
{-# OPTIONS -Wno-unused-imports #-}
1515

1616
module CurrentPoint (series, actual) where
1717

tests/ExperimentalSnippet.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
--
1010

1111
{-# LANGUAGE OverloadedStrings #-}
12-
{-# OPTIONS -fno-warn-unused-do-bind #-}
13-
{-# OPTIONS -fno-warn-unused-imports #-}
12+
{-# OPTIONS -Wno-unused-do-bind #-}
13+
{-# OPTIONS -Wno-unused-imports #-}
1414

1515
module Snippet where
1616

tests/IsolatedBenchmark.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
--
1010

1111
{-# LANGUAGE OverloadedStrings #-}
12-
{-# OPTIONS -fno-warn-unused-do-bind #-}
13-
{-# OPTIONS -fno-warn-unused-imports #-}
12+
{-# OPTIONS -Wno-unused-do-bind #-}
13+
{-# OPTIONS -Wno-unused-imports #-}
1414

1515
import qualified Blaze.ByteString.Builder as Builder (copyByteString,
1616
copyByteString,

0 commit comments

Comments
 (0)