Skip to content

Commit

Permalink
Use doctest-0.22 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
phadej committed Dec 3, 2023
1 parent e0dd023 commit 1c3b84d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
- name: cache (tools)
uses: actions/cache/restore@v3
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-f01e9287
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-e27a5680
path: ~/.haskell-ci-tools
- name: install cabal-plan
run: |
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
uses: actions/cache/save@v3
if: always()
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-f01e9287
key: ${{ runner.os }}-${{ matrix.compiler }}-tools-e27a5680
path: ~/.haskell-ci-tools
- name: checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion haskell-ci.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: haskell-ci
version: 0.17.20231110
version: 0.17.20231203
synopsis: Cabal package script generator for Travis-CI
description:
Script generator (@haskell-ci@) for
Expand Down
2 changes: 1 addition & 1 deletion src/HaskellCI/Config/Doctest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ data DoctestConfig = DoctestConfig
-------------------------------------------------------------------------------

defaultDoctestVersion :: VersionRange
defaultDoctestVersion = majorBoundVersion (mkVersion [0,21,0])
defaultDoctestVersion = majorBoundVersion (mkVersion [0,22,0])

-------------------------------------------------------------------------------
-- Grammar
Expand Down

0 comments on commit 1c3b84d

Please sign in to comment.