Skip to content

Commit

Permalink
Relax Win32 version bounds to support 2.14.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rufflewind committed Jan 21, 2024
1 parent 3d34c7d commit e1e384e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- { os: ubuntu-latest, ghc: latest, cabal: latest }
- { os: windows-latest, stack: lts-12.26, stack-extra-deps: "bytestring-0.11.3.0, filepath-1.4.100.0, time-1.8.0.2, Win32-2.13.3.0", overrides: "before_prepare() { sed -i.bak -e /CreateSymbolicLinkW/d -e /GetFinalPathNameByHandleW/d configure.ac; }" }
- { os: windows-latest, stack: lts-17.5, stack-extra-deps: "bytestring-0.11.3.0, filepath-1.4.100.0, time-1.9.3, Win32-2.13.3.0" }
- { os: windows-latest, stack: lts-19.21, stack-extra-deps: "bytestring-0.11.3.0, filepath-1.4.100.0, time-1.12.1, Win32-2.13.3.0" }
- { os: windows-latest, stack: lts-22.7, stack-extra-deps: "bytestring-0.11.5.3, filepath-1.4.200.1, time-1.12.2, Win32-2.14.0.0" }
runs-on: ${{ matrix.os }}
env:
TESTSCRIPT_OVERRIDES: ${{ matrix.overrides }}
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog for the [`directory`][1] package
==========================================

## 1.3.8.3

* Relax `Win32` version bounds to support 2.14.0.0.
([#166](https://github.com/haskell/directory/issues/166))

## 1.3.8.2 (Dec 2023)

* Relax `base` version bounds to support 4.19.
Expand Down
2 changes: 1 addition & 1 deletion directory.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Library
base >= 4.11.0 && < 4.20,
time >= 1.8.0 && < 1.13
if os(windows)
build-depends: Win32 >= 2.13.3 && < 2.14
build-depends: Win32 >= 2.13.3 && < 2.15
else
build-depends: unix >= 2.8.0 && < 2.9

Expand Down

0 comments on commit e1e384e

Please sign in to comment.