Skip to content

Commit

Permalink
Update changelog.md for 1.3.7.1 & fix CI
Browse files Browse the repository at this point in the history
  - It seems Chocolatey is having issues installing GHC. Disabling it since
    it's not really needed.
  - haskell/actions/setup seems to treat "false" as true; only "" seems
    to be treated as false.
  • Loading branch information
Rufflewind committed Jul 22, 2022
1 parent 4556d3c commit b33c108
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,12 @@ jobs:
- if: startsWith(matrix.os, 'windows-')
run: |
pacman -S --needed --noconfirm autoconf automake
- uses: haskell/actions/setup@v1
- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
enable-stack: ${{ matrix.stack != null }}
enable-stack: ${{ matrix.stack }}
stack-no-global: ${{ matrix.stack }}
- uses: actions/checkout@v2
- run: tools/testscript prepare
- run: tools/testscript build
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Changelog for the [`directory`][1] package
==========================================

## 1.3.7.1 (May 2021)
## 1.3.7.1 (Jul 2022)

* Relax `time` version bounds to support 1.12.
* Relax `Win32` version bounds to support 2.13.
* Relax `base` version bounds to support 4.17.

## 1.3.7.0 (Sep 2021)

Expand Down

0 comments on commit b33c108

Please sign in to comment.