Skip to content

Commit

Permalink
Drop support for ghc 8.4 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
fendor authored Feb 22, 2022
1 parent 460a92e commit e4b45f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['9.2.1', '9.0.2', '9.0.1', '8.10.4', '8.8.4', '8.6.5', '8.4.4']
ghc: ['9.2.1', '9.0.2', '9.0.1', '8.10.4', '8.8.4', '8.6.5']
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
- os: macOS-latest
ghc: '8.4.4' # fails due to ghc panic

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog hie-bios

## TBD - 0.9.0

* Drop support for GHC 8.4 [#331](https://github.com/haskell/hie-bios/pull/331)

## 2022-01-06 - 0.8.1

* Add support for GHC 9.0.2 [#322](https://github.com/haskell/hie-bios/pull/322)
Expand Down
6 changes: 3 additions & 3 deletions hie-bios.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-Version: 2.2
Name: hie-bios
Version: 0.8.1
Version: 0.9.0
Author: Matthew Pickering <[email protected]>
Maintainer: Matthew Pickering <[email protected]>
License: BSD-3-Clause
Expand Down Expand Up @@ -125,7 +125,7 @@ Extra-Source-Files: ChangeLog.md
tests/projects/stack-with-yaml/stack-with-yaml.cabal
tests/projects/stack-with-yaml/src/Lib.hs

tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 || ==9.0.2 || ==9.2.1
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 || ==9.0.2 || ==9.2.1

Library
Default-Language: Haskell2010
Expand Down Expand Up @@ -163,7 +163,7 @@ Library
extra >= 1.6.14 && < 1.8,
exceptions,
process >= 1.6.1 && < 1.7,
ghc >= 8.4.1 && < 9.3,
ghc >= 8.6.1 && < 9.3,
transformers >= 0.5.2 && < 0.7,
temporary >= 1.2 && < 1.4,
text >= 1.2.3 && < 1.3,
Expand Down
6 changes: 0 additions & 6 deletions tests/BiosTests.hs
Original file line number Diff line number Diff line change
Expand Up @@ -439,12 +439,6 @@ stackYamlResolver =
"lts-14.27" -- GHC 8.6.5
#elif (defined(MIN_VERSION_GLASGOW_HASKELL) && (MIN_VERSION_GLASGOW_HASKELL(8,6,4,0)))
"lts-13.19" -- GHC 8.6.4
#elif (defined(MIN_VERSION_GLASGOW_HASKELL) && (MIN_VERSION_GLASGOW_HASKELL(8,4,4,0)))
"lts-12.26" -- GHC 8.4.4
#elif (defined(MIN_VERSION_GLASGOW_HASKELL) && (MIN_VERSION_GLASGOW_HASKELL(8,4,3,0)))
"lts-12.14" -- GHC 8.4.3
#elif (defined(MIN_VERSION_GLASGOW_HASKELL) && (MIN_VERSION_GLASGOW_HASKELL(8,2,2,0)))
"lts-11.22" -- GHC 8.2.2
#endif

-- ------------------------------------------------------------------
Expand Down

0 comments on commit e4b45f3

Please sign in to comment.