Skip to content

Commit ca3e145

Browse files
authored
Merge pull request #74 from haskell-works/newhoggy/support-ghc-9.12.2
Support `ghc-9.12.2`
2 parents 792d107 + dabbf88 commit ca3e145

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/haskell.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,8 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
ghc: ["9.8.1", "9.6.3", "9.4.8", "9.2.8", "9.0.2", "8.10.7"]
21-
os: [ubuntu-latest, macOS-latest, windows-latest]
22-
exclude:
23-
- os: windows-latest
24-
ghc: "9.4.2"
20+
ghc: ["9.12.2", "9.10.2", "9.8.4", "9.6.7"]
21+
os: [ubuntu-latest, windows-latest]
2522

2623
env:
2724
# Modify this value to "invalidate" the cabal cache.

hw-simd.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ homepage: https://github.com/haskell-works/hw-simd#readme
99
bug-reports: https://github.com/haskell-works/hw-simd/issues
1010
author: John Ky
1111
maintainer: [email protected]
12-
copyright: 2018-2021 John Ky
12+
copyright: 2018-2025 John Ky
1313
license: BSD-3-Clause
1414
license-file: LICENSE
15-
tested-with: GHC == 9.8.1, GHC == 9.6.3, GHC == 9.4.8, GHC == 9.2.8, GHC == 9.0.2
15+
tested-with: GHC == 9.12.2, GHC == 9.10.2, GHC == 9.8.4, GHC == 9.6.7
1616
build-type: Simple
1717
extra-source-files: README.md
1818
ChangeLog.md
@@ -47,9 +47,9 @@ common containers { build-depends: containers >=
4747
common criterion { build-depends: criterion >= 1.4.1.0 && < 1.7 }
4848
common deepseq { build-depends: deepseq >= 1.4 && < 1.6 }
4949
common directory { build-depends: directory >= 1.2.2 && < 1.4 }
50-
common doctest { build-depends: doctest >= 0.16.2 && < 0.23 }
50+
common doctest { build-depends: doctest >= 0.16.2 && < 1 }
5151
common doctest-discover { build-depends: doctest-discover >= 0.2 && < 0.3 }
52-
common hedgehog { build-depends: hedgehog >= 0.5 && < 1.5 }
52+
common hedgehog { build-depends: hedgehog >= 0.5 && < 2 }
5353
common hspec { build-depends: hspec >= 2.4 && < 3 }
5454
common hw-bits { build-depends: hw-bits >= 0.7.0.2 && < 0.8 }
5555
common hw-hedgehog { build-depends: hw-hedgehog >= 0.1.0.1 && < 0.2 }

0 commit comments

Comments
 (0)