Skip to content

Commit

Permalink
Merge pull request #45 from alexfmpe/ghc-9.8
Browse files Browse the repository at this point in the history
Build with ghc 9.8
  • Loading branch information
ali-abrar authored May 28, 2024
2 parents 5954006 + caa57bd commit cc736d7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2']
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.8.2']
os: ['ubuntu-latest', 'macos-latest']
name: Haskell GHC ${{ matrix.ghc }} on ${{ matrix.os }}
steps:
Expand Down
6 changes: 3 additions & 3 deletions gargoyle-postgresql-connect/gargoyle-postgresql-connect.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ synopsis: Connect to gargoyle-managed postgresql instances
extra-source-files: ChangeLog.md
category: System
description: A convenience utility for connecting to a postgresql instance managed by gargoyle.
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2

library
exposed-modules: Gargoyle.PostgreSQL.Connect
ghc-options: -Wall
ghc-prof-options: -fprof-auto-exported
build-depends:
base >=4.12 && <4.17
base >=4.12 && <4.20
, bytestring >=0.10 && <0.12
, directory >=1.3 && <1.4
, gargoyle >=0.1.1.0 && < 0.2
, gargoyle-postgresql >=0.2.0.1 && < 0.3
, gargoyle-postgresql-nix >=0.3.0.0 && < 0.4
, postgresql-simple >=0.5 && <0.7
, postgresql-simple >=0.5 && <0.8
, resource-pool >=0.2.3

hs-source-dirs: src
Expand Down
4 changes: 2 additions & 2 deletions gargoyle-postgresql-nix/gargoyle-postgresql-nix.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ extra-source-files:
README.md
ChangeLog.md

tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2

library
exposed-modules: Gargoyle.PostgreSQL.Nix
other-modules: Paths_gargoyle_postgresql_nix
ghc-options: -Wall
ghc-prof-options: -fprof-auto-exported
build-depends:
base >=4.12 && <4.17
base >=4.12 && <4.20
, bytestring >=0.10 && <0.12
, gargoyle >=0.1 && <0.2
, gargoyle-postgresql >=0.2 && <0.3
Expand Down
4 changes: 2 additions & 2 deletions gargoyle-postgresql/gargoyle-postgresql.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ description:
> withDb dbPath a = withGargoyle defaultPostgres dbPath $ \dbUri -> a =<< connectPostgreSQL dbUri

extra-source-files: ChangeLog.md
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2

-- Requires postgres to be in the environment to run
flag enable-psql-test
Expand All @@ -45,7 +45,7 @@ library
ghc-options: -Wall
ghc-prof-options: -fprof-auto-exported
build-depends:
base >=4.12 && <4.17
base >=4.12 && <4.20
, bytestring >=0.10 && <0.12
, directory >=1.3 && <1.4
, gargoyle >=0.1.1.0 && < 0.2
Expand Down
4 changes: 2 additions & 2 deletions gargoyle/gargoyle.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ extra-source-files:
ChangeLog.md
README.md

tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2

library
exposed-modules: Gargoyle
ghc-options: -Wall
ghc-prof-options: -fprof-auto-exported
build-depends:
base >=4.12.0 && <4.17
base >=4.12.0 && <4.20
, directory >=1.3.3 && <1.4
, filelock >=0.1.1 && <0.2
, filepath >=1.4.2 && <1.5
Expand Down

0 comments on commit cc736d7

Please # to comment.