Skip to content

Commit 1c3b84d

Browse files
committed
Use doctest-0.22 by default
1 parent e0dd023 commit 1c3b84d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
- name: cache (tools)
153153
uses: actions/cache/restore@v3
154154
with:
155-
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-f01e9287
155+
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-e27a5680
156156
path: ~/.haskell-ci-tools
157157
- name: install cabal-plan
158158
run: |
@@ -180,7 +180,7 @@ jobs:
180180
uses: actions/cache/save@v3
181181
if: always()
182182
with:
183-
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-f01e9287
183+
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-e27a5680
184184
path: ~/.haskell-ci-tools
185185
- name: checkout
186186
uses: actions/checkout@v3

haskell-ci.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: haskell-ci
3-
version: 0.17.20231110
3+
version: 0.17.20231203
44
synopsis: Cabal package script generator for Travis-CI
55
description:
66
Script generator (@haskell-ci@) for

src/HaskellCI/Config/Doctest.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ data DoctestConfig = DoctestConfig
2626
-------------------------------------------------------------------------------
2727

2828
defaultDoctestVersion :: VersionRange
29-
defaultDoctestVersion = majorBoundVersion (mkVersion [0,21,0])
29+
defaultDoctestVersion = majorBoundVersion (mkVersion [0,22,0])
3030

3131
-------------------------------------------------------------------------------
3232
-- Grammar

0 commit comments

Comments
 (0)