Skip to content

Commit

Permalink
Remove support of GHC 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vrom911 committed Oct 20, 2024
1 parent 1635f30 commit b7254ab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
os: [ubuntu-latest, macOS-latest]
cabal: ["3.12"]
ghc:
- 8.2.2
- 8.4.4
- 8.6.5
- 8.8.4
Expand Down Expand Up @@ -45,8 +44,7 @@ jobs:
ghc: 8.6.5
- os: macOS-latest
ghc: 8.4.4
- os: macOS-latest
ghc: 8.2.2


steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The changelog is available [on GitHub][2].

* Support GHC 9.2.8. 9.4.7, 9.6.6, 9.8.2, 9.10.1.
* Upgrade `text` from `1.2.3` to `2.0.0`.
* Remove support of GHC 8.2.2.

## 0.0.4.1 — Jun 13, 2022

Expand Down
5 changes: 2 additions & 3 deletions shellmet.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ category: Shell, Command Line
build-type: Simple
extra-doc-files: README.md
CHANGELOG.md
tested-with: GHC == 8.2.2
GHC == 8.4.4
tested-with: GHC == 8.4.4
GHC == 8.6.5
GHC == 8.8.4
GHC == 8.10.7
Expand All @@ -31,7 +30,7 @@ source-repository head
location: https://github.com/kowainik/shellmet.git

common common-options
build-depends: base >= 4.10.1.0 && < 4.21
build-depends: base >= 4.11.1.0 && < 4.21

ghc-options: -Wall
-Wcompat
Expand Down
2 changes: 1 addition & 1 deletion src/Shellmet.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{-# LANGUAGE CPP #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE TypeFamilies #-}
#if __GLASGOW_HASKELL__ >= 910
#if __GLASGOW_HASKELL__ >= 904
{-# LANGUAGE TypeOperators #-}
#endif

Expand Down

0 comments on commit b7254ab

Please sign in to comment.