Skip to content

Commit

Permalink
v0.1.0.1 revision 7: remove restrictive bounds, add CI for GHC 9.8 (#8)
Browse files Browse the repository at this point in the history
Closes #7.

* CI GHA: Disable build with GHC < 8.4 because of hsc2hs
  • Loading branch information
andreasabel authored Nov 17, 2023
1 parent 02830de commit 9b4b445
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Build (Windows)
on:
push:
branches: [ master, ci-* ]
branches: [ master ]
pull_request:
branches: [ master, ci-* ]
branches: [ master ]

jobs:
build:
Expand All @@ -12,10 +12,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6', '8.4', '8.2', '8.0']
ghc: ['9.8', '9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6', '8.4']
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal build
Expand Down
6 changes: 3 additions & 3 deletions windns.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ cabal-version: 1.12

name: windns
version: 0.1.0.1
x-revision: 7
synopsis: Domain Name Service (DNS) lookup via the <windns.h>/dnsapi.dll standard library
X-SPDX-License-Identifier: GPL-2.0-or-later
license: GPL-2
Expand Down Expand Up @@ -51,8 +52,8 @@ library
Trustworthy

build-depends: base >= 4.5.1.0 && < 5
, bytestring >= 0.9.2 && < 0.12
, deepseq >= 1.3.0.0 && < 1.5
, bytestring >= 0.9.2 && < 1
, deepseq >= 1.3.0.0 && < 2

build-tools: hsc2hs >= 0.67 && < 0.69

Expand All @@ -64,4 +65,3 @@ library

if !(os(windows) || flag(allow-non-windows))
build-depends:base<0

0 comments on commit 9b4b445

Please sign in to comment.