Skip to content

Commit

Permalink
Compatibility with text-2.0 (#449)
Browse files Browse the repository at this point in the history
* Compatibility with text-2.0

* CI: Exclude 8.0.2/8.2.2 on Windows
  • Loading branch information
ysangkok authored and jacobstanley committed May 22, 2022
1 parent 37dac71 commit 6f1048f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
os: [macos-latest, ubuntu-latest, windows-latest]
cabal: ["3.4"]
ghc: ["8.0.2", "8.2.2", "8.4.4", "8.6.5", "8.8.4", "8.10.7", "9.2.1"]
exclude:
# https://github.com/haskell/text/pull/404
- os: windows-latest
ghc: "8.0.2"
- os: windows-latest
ghc: "8.2.2"

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions hedgehog-example/hedgehog-example.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ library
, containers >= 0.4 && < 0.7
, directory >= 1.0 && < 1.4
, filepath >= 1.3 && < 1.5
, hashtables >= 1.2 && < 1.3
, hashtables >= 1.2 && < 1.4
, lifted-base >= 0.2 && < 0.3
, mmorph >= 1.0 && < 1.2
, mtl >= 2.1 && < 2.3
Expand All @@ -69,7 +69,7 @@ library
, template-haskell >= 2.10 && < 2.19
, temporary >= 1.3 && < 1.4
, temporary-resourcet >= 0.1 && < 0.2
, text >= 1.1 && < 1.3
, text >= 1.1 && < 2.1
, transformers >= 0.4 && < 0.6

test-suite test
Expand Down
2 changes: 1 addition & 1 deletion hedgehog/hedgehog.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ library
, resourcet >= 1.1 && < 1.3
, stm >= 2.4 && < 2.6
, template-haskell >= 2.10 && < 2.19
, text >= 1.1 && < 1.3
, text >= 1.1 && < 2.1
, time >= 1.4 && < 1.13
, transformers >= 0.5 && < 0.6
, transformers-base >= 0.4.5.1 && < 0.5
Expand Down

0 comments on commit 6f1048f

Please sign in to comment.