Skip to content
New issue

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

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

Already on GitHub? # to your account

Build with ghc 9.8 #45

Merged
merged 2 commits into from
May 28, 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
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
Loading