Skip to content

Commit 19bfddf

Browse files
committed
Support GHC 9.12
1 parent 5954006 commit 19bfddf

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

gargoyle-postgresql-connect/gargoyle-postgresql-connect.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ synopsis: Connect to gargoyle-managed postgresql instances
1111
extra-source-files: ChangeLog.md
1212
category: System
1313
description: A convenience utility for connecting to a postgresql instance managed by gargoyle.
14-
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
14+
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.2
1515

1616
library
1717
exposed-modules: Gargoyle.PostgreSQL.Connect
1818
ghc-options: -Wall
1919
ghc-prof-options: -fprof-auto-exported
2020
build-depends:
21-
base >=4.12 && <4.17
22-
, bytestring >=0.10 && <0.12
21+
base >=4.12 && <4.22
22+
, bytestring >=0.10 && <0.13
2323
, directory >=1.3 && <1.4
2424
, gargoyle >=0.1.1.0 && < 0.2
2525
, gargoyle-postgresql >=0.2.0.1 && < 0.3
2626
, gargoyle-postgresql-nix >=0.3.0.0 && < 0.4
27-
, postgresql-simple >=0.5 && <0.7
27+
, postgresql-simple >=0.5 && <0.8
2828
, resource-pool >=0.2.3
2929

3030
hs-source-dirs: src

gargoyle-postgresql-nix/gargoyle-postgresql-nix.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ extra-source-files:
1616
README.md
1717
ChangeLog.md
1818

19-
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
19+
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.2
2020

2121
library
2222
exposed-modules: Gargoyle.PostgreSQL.Nix
2323
other-modules: Paths_gargoyle_postgresql_nix
2424
ghc-options: -Wall
2525
ghc-prof-options: -fprof-auto-exported
2626
build-depends:
27-
base >=4.12 && <4.17
28-
, bytestring >=0.10 && <0.12
27+
base >=4.12 && <4.22
28+
, bytestring >=0.10 && <0.13
2929
, gargoyle >=0.1 && <0.2
3030
, gargoyle-postgresql >=0.2 && <0.3
3131
, which >=0.2 && <0.3

gargoyle-postgresql/gargoyle-postgresql.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ description:
3333
> withDb dbPath a = withGargoyle defaultPostgres dbPath $ \dbUri -> a =<< connectPostgreSQL dbUri
3434

3535
extra-source-files: ChangeLog.md
36-
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
36+
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.2
3737

3838
-- Requires postgres to be in the environment to run
3939
flag enable-psql-test
@@ -45,15 +45,15 @@ library
4545
ghc-options: -Wall
4646
ghc-prof-options: -fprof-auto-exported
4747
build-depends:
48-
base >=4.12 && <4.17
49-
, bytestring >=0.10 && <0.12
48+
base >=4.12 && <4.22
49+
, bytestring >=0.10 && <0.13
5050
, directory >=1.3 && <1.4
5151
, gargoyle >=0.1.1.0 && < 0.2
5252
, posix-escape >=0.1 && <0.2
5353
, process >=1.5 && <1.7
5454
, stringsearch >=0.3 && <0.4
55-
, text >=1.2 && <1.3
56-
, unix >=2.7.2 && <2.8
55+
, text >=1.2 && <2.2
56+
, unix >=2.7.2 && <2.9
5757

5858
hs-source-dirs: src
5959
default-language: Haskell2010

gargoyle/gargoyle.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ extra-source-files:
2222
ChangeLog.md
2323
README.md
2424

25-
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2
25+
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.8.2 || ==9.10.1 || ==9.12.2
2626

2727
library
2828
exposed-modules: Gargoyle
2929
ghc-options: -Wall
3030
ghc-prof-options: -fprof-auto-exported
3131
build-depends:
32-
base >=4.12.0 && <4.17
32+
base >=4.12.0 && <4.22
3333
, directory >=1.3.3 && <1.4
3434
, filelock >=0.1.1 && <0.2
35-
, filepath >=1.4.2 && <1.5
35+
, filepath >=1.4.2 && <1.6
3636
, network >=2.6.0 && <3.2
3737
, process >=1.5.0 && <1.7
38-
, unix >=2.7.2 && <2.8
38+
, unix >=2.7.2 && <2.9
3939

4040
hs-source-dirs: src
4141
default-language: Haskell2010

0 commit comments

Comments
 (0)