Skip to content

Commit cf37e8c

Browse files
committed
Allow building for GHC8
1 parent ef266cb commit cf37e8c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.4.1.0
2+
Added aeson-compatibile encode/decode functions.
3+
14
# 0.4.0.0
25
Breaking changes (this could *really* break your code):
36
- Changed `<|>` to `<>` (`Monoid` is better for 'appending' than `Alternative`)

json-stream.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ library
3636
c-sources: c_lib/lexer.c, c_lib/unescape_string.c
3737
includes: c_lib/lexer.h
3838
include-dirs: c_lib
39-
build-depends: base >=4.7 && <4.9
39+
build-depends: base >=4.7 && <4.10
4040
, bytestring
4141
, text
4242
, aeson >= 0.7
@@ -58,7 +58,7 @@ test-suite doctest
5858
includes: c_lib/lexer.h
5959
include-dirs: c_lib
6060
cc-options: -fPIC
61-
Build-Depends: base >= 4.7 && <4.9
61+
Build-Depends: base >= 4.7 && <4.10
6262
, doctest >= 0.9.3
6363
, bytestring
6464
, text
@@ -83,7 +83,7 @@ test-suite spec
8383
hs-source-dirs: test, .
8484
default-language: Haskell2010
8585
ghc-options: -Wall
86-
build-depends: base >=4.7 && <4.9
86+
build-depends: base >=4.7 && <4.10
8787
, bytestring
8888
, text
8989
, aeson

0 commit comments

Comments
 (0)