Skip to content

Commit d80c973

Browse files
committed
Release log-base-0.12.1.0 and log-elasticsearch-0.13.0.2
1 parent 36318d6 commit d80c973

File tree

8 files changed

+16
-26
lines changed

8 files changed

+16
-26
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.19.20250315
11+
# version: 0.19.20250506
1212
#
13-
# REGENDATA ("0.19.20250315",["github","--config=cabal.haskell-ci","cabal.project"])
13+
# REGENDATA ("0.19.20250506",["github","--config=cabal.haskell-ci","cabal.project"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -37,19 +37,19 @@ jobs:
3737
compilerVersion: 9.12.2
3838
setup-method: ghcup
3939
allow-failure: false
40-
- compiler: ghc-9.10.1
40+
- compiler: ghc-9.10.2
4141
compilerKind: ghc
42-
compilerVersion: 9.10.1
42+
compilerVersion: 9.10.2
4343
setup-method: ghcup
4444
allow-failure: false
4545
- compiler: ghc-9.8.4
4646
compilerKind: ghc
4747
compilerVersion: 9.8.4
4848
setup-method: ghcup
4949
allow-failure: false
50-
- compiler: ghc-9.6.6
50+
- compiler: ghc-9.6.7
5151
compilerKind: ghc
52-
compilerVersion: 9.6.6
52+
compilerVersion: 9.6.7
5353
setup-method: ghcup
5454
allow-failure: false
5555
- compiler: ghc-9.4.8
@@ -81,12 +81,12 @@ jobs:
8181
- name: Install GHCup
8282
run: |
8383
mkdir -p "$HOME/.ghcup/bin"
84-
curl -sL https://downloads.haskell.org/ghcup/0.1.40.0/x86_64-linux-ghcup-0.1.40.0 > "$HOME/.ghcup/bin/ghcup"
84+
curl -sL https://downloads.haskell.org/ghcup/0.1.50.1/x86_64-linux-ghcup-0.1.50.1 > "$HOME/.ghcup/bin/ghcup"
8585
chmod a+x "$HOME/.ghcup/bin/ghcup"
8686
- name: Install cabal-install
8787
run: |
88-
"$HOME/.ghcup/bin/ghcup" install cabal 3.12.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
89-
echo "CABAL=$HOME/.ghcup/bin/cabal-3.12.1.0 -vnormal+nowrap" >> "$GITHUB_ENV"
88+
"$HOME/.ghcup/bin/ghcup" install cabal 3.14.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
89+
echo "CABAL=$HOME/.ghcup/bin/cabal-3.14.2.0 -vnormal+nowrap" >> "$GITHUB_ENV"
9090
- name: Install GHC (GHCup)
9191
if: matrix.setup-method == 'ghcup'
9292
run: |
@@ -201,9 +201,6 @@ jobs:
201201
echo "package log-postgres" >> cabal.project
202202
echo " ghc-options: -Werror=missing-methods" >> cabal.project
203203
cat >> cabal.project <<EOF
204-
allow-newer: *:base
205-
allow-newer: *:ghc-prim
206-
allow-newer: *:template-haskell
207204
EOF
208205
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: any.$_ installed\n" unless /^(log-base|log-elasticsearch|log-postgres)$/; }' >> cabal.project.local
209206
cat cabal.project

cabal.haskell-ci

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
branches: master
22
doctest: False
33
tests: True
4-
5-
ghcup-jobs: True

cabal.project

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
packages: log-base
22
, log-elasticsearch
33
, log-postgres
4-
5-
-- GHC 9.6
6-
allow-newer: *:base
7-
, *:ghc-prim
8-
, *:template-haskell

log-base/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# log-base-0.12.1.0 (2025-??-??)
1+
# log-base-0.12.1.0 (2025-06-26)
22
* Add utility function to log unhandled exceptions.
33

44
# log-base-0.12.0.1 (2023-03-14)

log-base/log-base.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ copyright: Scrive AB
2121
category: System
2222
build-type: Simple
2323
extra-source-files: CHANGELOG.md, README.md
24-
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.6, 9.8.4, 9.10.1, 9.12.2 }
24+
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.7, 9.8.4, 9.10.2, 9.12.2 }
2525

2626
source-repository head
2727
type: git

log-elasticsearch/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# log-elasticsearch-0.13.0.2 (2025-04-01)
2-
* Switch back to `http-client-tls` by default, and add a constraint
3-
on a more recent version.
1+
# log-elasticsearch-0.13.0.2 (2025-06-23)
2+
* Switch back to `http-client-tls` by default since `HsOpenSSL` is based on a
3+
deprecated `openssl` API (soon to be removed).
44

55
# log-elasticsearch-0.13.0.1 (2023-01-31)
66
* Add support for OpenSearch.

log-elasticsearch/log-elasticsearch.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ copyright: Scrive AB
1818
category: System
1919
build-type: Simple
2020
extra-source-files: CHANGELOG.md, README.md
21-
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.6, 9.8.4, 9.10.1, 9.12.2 }
21+
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.7, 9.8.4, 9.10.2, 9.12.2 }
2222

2323
source-repository head
2424
type: git

log-postgres/log-postgres.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ copyright: Scrive AB
1818
category: System
1919
build-type: Simple
2020
extra-source-files: CHANGELOG.md, README.md
21-
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.6, 9.8.4, 9.10.1, 9.12.2 }
21+
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.7, 9.8.4, 9.10.2, 9.12.2 }
2222

2323
Source-repository head
2424
type: git

0 commit comments

Comments
 (0)