Skip to content

Commit db6feb8

Browse files
authored
Prepare release of 0.1.9 (#72)
1 parent f6b8801 commit db6feb8

File tree

10 files changed

+24
-21
lines changed

10 files changed

+24
-21
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
os:
1616
- ubuntu-latest
1717
cabal:
18-
- '3.12.1.0'
18+
- '3.14.1.0'
1919
ghc:
2020
- 9.0.2
2121
- 9.2.8
2222
- 9.4.8
23-
- 9.6.6
24-
- 9.8.2
25-
- 9.10.1
26-
- 9.12.1
23+
- 9.6.7
24+
- 9.8.4
25+
- 9.10.3
26+
- 9.12.2
2727

2828
steps:
2929
- uses: actions/checkout@v4
@@ -54,15 +54,15 @@ jobs:
5454
strategy:
5555
matrix:
5656
stack:
57-
- 3.1.1
57+
- 3.7.1
5858
stack-yaml:
5959
- stack-9.0.2.yaml
6060
- stack-9.2.8.yaml
6161
- stack-9.4.8.yaml
62-
- stack-9.6.6.yaml
63-
- stack-9.8.3.yaml
62+
- stack-9.6.7.yaml
63+
- stack-9.8.4.yaml
6464
- stack-9.10.3.yaml
65-
- stack-9.12.1.yaml
65+
- stack-9.12.2.yaml
6666
steps:
6767
- uses: actions/checkout@v4
6868
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
`servant-hmac-auth` uses [PVP Versioning][1].
44
The change log is available [on GitHub][2].
55

6+
## 0.1.9 - Dec 2, 2025
7+
* Version bumps to allow building with GHC `9.12`
8+
69
## 0.1.8 - Nov 8, 2024
710
* Switch from cryptonite (deprecated) to crypton.
811

servant-hmac-auth.cabal

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: servant-hmac-auth
3-
version: 0.1.8
3+
version: 0.1.9
44
synopsis: Servant authentication with HMAC
55
description: Servant authentication with HMAC. See README.md for usage example.
66
homepage: https://github.com/holmusk/servant-hmac-auth
@@ -17,10 +17,10 @@ extra-doc-files: README.md
1717
tested-with: GHC == 9.0.2
1818
GHC == 9.2.8
1919
GHC == 9.4.8
20-
GHC == 9.6.6
21-
GHC == 9.8.2
22-
GHC == 9.10.1
23-
GHC == 9.12.1
20+
GHC == 9.6.7
21+
GHC == 9.8.4
22+
GHC == 9.10.3
23+
GHC == 9.12.2
2424

2525
source-repository head
2626
type: git
@@ -69,11 +69,11 @@ library
6969
Servant.Auth.Hmac.Client
7070
Servant.Auth.Hmac.Server
7171

72-
build-depends: base64-bytestring >= 1.0 && <= 2
72+
build-depends: base64-bytestring >= 1.0 && < 2
7373
, bytestring ^>= 0.10 || ^>= 0.11 || ^>= 0.12
7474
, case-insensitive ^>= 1.2
75-
, containers >= 0.5.7 && < 0.8
76-
, crypton >= 0.31 && < 2.0
75+
, containers >= 0.5.7 && < 0.9
76+
, crypton >= 0.31 && < 2
7777
, http-types ^>= 0.12
7878
, http-client >= 0.6.4 && < 0.8
7979
, memory >= 0.15 && < 0.19

stack-9.10.3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
resolver: lts-24.16
1+
resolver: lts-24.22

stack-9.12.1.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

stack-9.12.2.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
resolver: nightly-2025-12-02

stack-9.6.6.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

stack-9.6.7.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
resolver: lts-22.44

stack-9.8.3.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

stack-9.8.4.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
resolver: lts-23.28

0 commit comments

Comments
 (0)