Skip to content

Commit

Permalink
Release 1.11.1.0 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
arybczak committed Jan 31, 2023
1 parent b97c83c commit e5b4b60
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/haskell-ci.yml
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.15.20220826
# version: 0.15.20230115
#
# REGENDATA ("0.15.20220826",["github","--config=cabal.haskell-ci","hpqtypes.cabal"])
# REGENDATA ("0.15.20230115",["github","--config=cabal.haskell-ci","hpqtypes.cabal"])
#
name: Haskell-CI
on:
Expand All @@ -30,22 +30,22 @@ jobs:
image: buildpack-deps:bionic
services:
postgres:
image: postgres:10
image: postgres:14
env:
POSTGRES_PASSWORD: postgres
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
continue-on-error: ${{ matrix.allow-failure }}
strategy:
matrix:
include:
- compiler: ghc-9.4.2
- compiler: ghc-9.4.4
compilerKind: ghc
compilerVersion: 9.4.2
compilerVersion: 9.4.4
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.2.4
- compiler: ghc-9.2.5
compilerKind: ghc
compilerVersion: 9.2.4
compilerVersion: 9.2.5
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.0.2
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
chmod a+x $HOME/.cabal/bin/cabal-plan
cabal-plan --version
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: source
- name: initial cabal.project for sdist
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
cabal-plan
- name: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
path: ~/.cabal/store
Expand All @@ -225,7 +225,7 @@ jobs:
${CABAL} -vnormal check
- name: haddock
run: |
$CABAL v2-haddock $ARG_COMPILER --with-haddock $HADDOCK $ARG_TESTS $ARG_BENCH all
$CABAL v2-haddock --haddock-all $ARG_COMPILER --with-haddock $HADDOCK $ARG_TESTS $ARG_BENCH all
- name: unconstrained build
run: |
rm -f cabal.project.local
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
# hpqtypes-1.11.1.0 (2023-??-??)
# hpqtypes-1.11.1.0 (2023-01-31)
* Add support for setting a custom role when establishing a connection.

# hpqtypes-1.11.0.0 (2023-01-18)
Expand Down
2 changes: 1 addition & 1 deletion hpqtypes.cabal
Expand Up @@ -21,7 +21,7 @@ copyright: Scrive AB
category: Database
build-type: Simple
cabal-version: 1.24
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.2
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.5 || ==9.4.4

extra-source-files: README.md
, CHANGELOG.md
Expand Down

0 comments on commit e5b4b60

Please sign in to comment.