Skip to content

Commit

Permalink
Merge patch into master
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 16, 2023
2 parents 6270c62 + a370d72 commit dfca262
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jobs:
fail-fast: false
matrix:
include:
- ghc: 8.10.1
- ghc: 8.8.1
ghc-options: ""
ignore-haddock: "true"
- ghc: latest

runs-on: ubuntu-latest
Expand All @@ -38,3 +39,4 @@ jobs:
with:
ghc: ${{matrix.ghc}}
ghc-options: ${{matrix.ghc-options}}
ignore-haddock: ${{matrix.ignore-haddock}}
4 changes: 2 additions & 2 deletions hasql.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: hasql
version: 1.6.3.2
version: 1.6.3.3
category: Hasql, Database, PostgreSQL
synopsis: An efficient PostgreSQL driver with a flexible mapping API
description:
Expand Down Expand Up @@ -99,7 +99,7 @@ library
build-depends:
, aeson >=2 && <3
, attoparsec >=0.10 && <0.15
, base >=4.12 && <5
, base >=4.13 && <5
, bytestring >=0.10 && <0.12
, bytestring-strict-builder >=0.4.5.1 && <0.5
, contravariant >=1.3 && <2
Expand Down
2 changes: 1 addition & 1 deletion profiling/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ main =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"

-- * Sessions
Expand Down
2 changes: 1 addition & 1 deletion tasty/Main/Connection.hs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ with handler =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"
use connection =
lift $ handler connection
Expand Down
2 changes: 1 addition & 1 deletion tasty/Main/DSL.hs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ session session =
host = "localhost"
port = 5432
user = "postgres"
password = ""
password = "postgres"
database = "postgres"
use connection =
ExceptT
Expand Down
2 changes: 1 addition & 1 deletion threads-test/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ main =
$ Hasql.Connection.acquire connectionSettings
where
connectionSettings =
Hasql.Connection.settings "localhost" 5432 "postgres" "" "postgres"
Hasql.Connection.settings "localhost" 5432 "postgres" "postgres" "postgres"
use (connection1, connection2) =
do
beginVar <- newEmptyMVar
Expand Down

0 comments on commit dfca262

Please sign in to comment.