Skip to content

Commit

Permalink
Relax time version bounds to support 1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Rufflewind committed Mar 17, 2024
1 parent 1b47bc6 commit f3e4759
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 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-22.7, stack-extra-deps: "bytestring-0.11.5.3, filepath-1.5.2.0, os-string-2.0.2, time-1.12.2, Win32-2.14.0.0", stack-package-flags: "{directory: {os-string: true}, Win32: {os-string: true}}" }
- { os: windows-latest, stack: lts-22.7, stack-extra-deps: "bytestring-0.11.5.3, filepath-1.5.2.0, os-string-2.0.2, time-1.14, Win32-2.14.0.0", stack-package-flags: "{directory: {os-string: true}, Win32: {os-string: true}}" }
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.4 (unreleased)

* Relax `time` version bounds to support 1.14.
([#171](https://github.com/haskell/directory/issues/171))

## 1.3.8.3 (Jan 2024)

* Relax `Win32` version bounds to support 2.14.0.0.
Expand Down
4 changes: 2 additions & 2 deletions directory.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: directory
version: 1.3.8.3
version: 1.3.8.4
license: BSD-3-Clause
license-file: LICENSE
maintainer: [email protected]
Expand Down Expand Up @@ -61,7 +61,7 @@ Library

build-depends:
base >= 4.11.0 && < 4.20,
time >= 1.8.0 && < 1.13
time >= 1.8.0 && < 1.15
if os(windows)
build-depends: Win32 >= 2.13.3 && < 2.15
else
Expand Down

0 comments on commit f3e4759

Please sign in to comment.