Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow building with GHC 9.8 #139

Merged
merged 2 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing 8.10.7 not because it's broken but because most people should have migrated off of 8.x and not to overload CI unnecessarily.

- 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.6.3]

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-22.4
Loading