Skip to content

Commit

Permalink
Allow building with GHC 9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jhrcek committed Jan 3, 2024
1 parent d104c24 commit 16bde07
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
os: [ubuntu-latest]
cabal: ["3.10.1.0"]
ghc:
- 8.10.7
- 9.0.2
- 9.2.8
- 9.4.6
- 9.6.2
- 9.4.8
- 9.6.3
- 9.8.1
include:
# Test only with latest GHC on windows and macOS
- os: macOS-latest
ghc: 9.6.2
ghc: 9.8.1
- os: windows-latest
ghc: 9.6.2
ghc: 9.8.1

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -63,8 +63,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
stack: [2.11.1]
ghc: [9.4.6]
stack: [2.13.1]
ghc: [9.4.8]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
`elm-street` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

## 0.2.2.0 - Jan 4, 2024

* Version bumps to allow building with GHC 9.8.1
* Remove GHC 8.10.7 from CI

## 0.2.1.1 - Aug 3, 2023
* Add missing extra-source-files: test/golden/oneType.json to cabal

Expand Down
12 changes: 6 additions & 6 deletions elm-street.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: elm-street
version: 0.2.1.1
version: 0.2.2.0
synopsis: Crossing the road between Haskell and Elm
description:
`Elm-street` allows you to generate automatically derived from Haskell types
Expand All @@ -19,18 +19,18 @@ build-type: Simple
extra-doc-files: README.md
CHANGELOG.md
extra-source-files: test/golden/oneType.json
tested-with: GHC == 8.10.7
GHC == 9.0.2
tested-with: GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.6
GHC == 9.6.2
GHC == 9.4.8
GHC == 9.6.3
GHC == 9.8.1

source-repository head
type: git
location: https://github.com/Holmusk/elm-street.git

common common-options
build-depends: base >= 4.11.1.0 && < 4.19
build-depends: base >= 4.11.1.0 && < 4.20

ghc-options: -Wall
-Wincomplete-uni-patterns
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resolver: lts-21.9
resolver: lts-21.25

0 comments on commit 16bde07

Please sign in to comment.