Skip to content

Commit 0b706aa

Browse files
authored
Merge pull request #1452 from akhesaCaro/unsupport_old_ghc
Unsupport GHC < 8.6.5
2 parents 8da966f + a4aacc9 commit 0b706aa

File tree

54 files changed

+47
-112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+47
-112
lines changed

.github/workflows/master.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ jobs:
1515
os: [ubuntu-latest]
1616
cabal: ["3.4"]
1717
ghc:
18-
- "8.0.2"
19-
- "8.2.2"
20-
- "8.4.4"
2118
- "8.6.5"
2219
- "8.8.4"
2320
- "8.10.4"

Makefile

Lines changed: 0 additions & 32 deletions
This file was deleted.

cabal.ghcjs.project

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ packages:
77
-- we need to tell cabal we are using GHCJS
88
compiler: ghcjs
99
tests: True
10+
11+
constraints: hashable <=1.3.3.0

doc/cookbook/basic-auth/basic-auth.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
11+
tested-with: GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
1212

1313
executable cookbook-basic-auth
1414
main-is: BasicAuth.lhs

doc/cookbook/basic-streaming/basic-streaming.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
11+
tested-with: GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
1212

1313
executable cookbook-basic-streaming
1414
main-is: Streaming.lhs

doc/cookbook/curl-mock/CurlMock.lhs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Language extensions and imports:
2424
import Control.Lens ((^.))
2525
import Data.Aeson
2626
import Data.Aeson.Text
27-
import Data.Monoid ((<>))
2827
import Data.Proxy (Proxy (Proxy))
2928
import Data.Text (Text)
3029
import Data.Text.Encoding (decodeUtf8)

doc/cookbook/curl-mock/curl-mock.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
11+
tested-with: GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
1212

1313
executable cookbock-curl-mock
1414
main-is: CurlMock.lhs

doc/cookbook/custom-errors/CustomErrors.lhs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Extensions and imports:
2020
import Data.Aeson
2121
import Data.Proxy
2222
import Data.Text
23-
import Data.Semigroup
2423
import GHC.Generics
2524
import Network.Wai
2625
import Network.Wai.Handler.Warp

doc/cookbook/custom-errors/custom-errors.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
11+
tested-with: GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
1212

1313
executable cookbook-custom-errors
1414
main-is: CustomErrors.lhs

doc/cookbook/db-postgres-pool/db-postgres-pool.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
11+
tested-with: GHC==8.6.5, GHC==8.8.3, GHC ==8.10.1
1212

1313
executable cookbook-db-postgres-pool
1414
main-is: PostgresPool.lhs

0 commit comments

Comments
 (0)