Skip to content

Commit 625e1eb

Browse files
authored
Merge pull request #89 from haskell-works/support-ghc-8.2.2
Support ghc-8.2.2
2 parents 47286f3 + a084094 commit 625e1eb

File tree

7 files changed

+15
-3
lines changed

7 files changed

+15
-3
lines changed

.circleci/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ orbs:
88
workflows:
99
multiple-ghc-build:
1010
jobs:
11+
- haskell/build-with-binary-cache:
12+
name: GHC 8.2.2
13+
executor: haskell/ghc-8_2_2
14+
context: haskell-ci
15+
binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"}
16+
1117
- haskell/build-with-binary-cache:
1218
name: GHC 8.4.4
1319
executor: haskell/ghc-8_4_4
@@ -30,6 +36,7 @@ workflows:
3036
name: GitHub Release
3137
context: haskell-ci
3238
requires:
39+
- GHC 8.2.2
3340
- GHC 8.4.4
3441
- GHC 8.6.5
3542
- GHC 8.8.1

app/App/Commands/Demo.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module App.Commands.Demo
1212

1313
import Data.Foldable
1414
import Data.Maybe
15+
import Data.Semigroup ((<>))
1516
import HaskellWorks.Data.TreeCursor
1617
import HaskellWorks.Data.Xml.Decode
1718
import HaskellWorks.Data.Xml.DecodeResult

hw-xml.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.2
22

33
name: hw-xml
4-
version: 0.4.0.1
4+
version: 0.4.0.2
55
synopsis: XML parser based on succinct data structures.
66
description: XML parser based on succinct data structures. Please see README.md
77
category: Data, XML, Succinct Data Structures, Data Structures
@@ -14,7 +14,7 @@ copyright: 2016-2019 John Ky
1414
, 2016-2019 Alexey Raga
1515
license: BSD-3-Clause
1616
license-file: LICENSE
17-
tested-with: GHC == 8.8.1, GHC == 8.6.5, GHC == 8.4.4
17+
tested-with: GHC == 8.8.1, GHC == 8.6.5, GHC == 8.4.4, GHC == 8.2.2
1818
build-type: Simple
1919
extra-source-files: README.md
2020
data-files: data/catalog.xml
@@ -23,7 +23,7 @@ source-repository head
2323
type: git
2424
location: https://github.com/haskell-works/hw-xml
2525

26-
common base { build-depends: base >= 4.11 && < 5 }
26+
common base { build-depends: base >= 4.10 && < 5 }
2727

2828
common ansi-wl-pprint { build-depends: ansi-wl-pprint >= 0.6.9 && < 0.7 }
2929
common array { build-depends: array >= 0.5.2.0 && < 0.6 }

src/HaskellWorks/Data/Xml/Decode.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import Control.Applicative
44
import Control.Lens
55
import Control.Monad
66
import Data.Foldable
7+
import Data.Semigroup ((<>))
78
import HaskellWorks.Data.Xml.DecodeError
89
import HaskellWorks.Data.Xml.DecodeResult
910
import HaskellWorks.Data.Xml.Value

src/HaskellWorks/Data/Xml/Internal/Blank.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module HaskellWorks.Data.Xml.Internal.Blank
88
) where
99

1010
import Data.ByteString (ByteString)
11+
import Data.Semigroup ((<>))
1112
import Data.Word
1213
import Data.Word8
1314
import HaskellWorks.Data.Xml.Internal.Words

src/HaskellWorks/Data/Xml/RawValue.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module HaskellWorks.Data.Xml.RawValue
1010
) where
1111

1212
import Data.List
13+
import Data.Semigroup ((<>))
1314
import HaskellWorks.Data.Xml.Grammar
1415
import HaskellWorks.Data.Xml.Succinct.Index
1516
import Text.PrettyPrint.ANSI.Leijen hiding ((<$>), (<>))

src/HaskellWorks/Data/Xml/Value.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module HaskellWorks.Data.Xml.Value
1919
) where
2020

2121
import Control.Lens
22+
import Data.Semigroup ((<>))
2223
import HaskellWorks.Data.Xml.RawDecode
2324
import HaskellWorks.Data.Xml.RawValue
2425

0 commit comments

Comments
 (0)