From 90f92e93f73131e7eb3fd0b9e49e91624321ea73 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Fri, 11 Oct 2024 18:37:52 +0200 Subject: [PATCH] Version 0.7.3: CHANGELOG, bump lower bounds to GHC-8.0.1-shipped versions --- CHANGELOG.md | 6 ++++++ unix-compat.cabal | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7484ff4..7275f3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## Version 0.7.3 (2024-10-11) + +- Fix `sysmacros.h` include for GNU/Hurd + ([PR #12](https://github.com/haskell-pkg-janitors/unix-compat/pull/12)). +- Tested with GHC 8.0 - 9.10. + ## Version 0.7.2 (2024-06-25) - Remove flag `old-time` and drop support for `old-time`. diff --git a/unix-compat.cabal b/unix-compat.cabal index 45c8e18..3589fc2 100644 --- a/unix-compat.cabal +++ b/unix-compat.cabal @@ -1,6 +1,6 @@ cabal-version: >= 1.10 name: unix-compat -version: 0.7.2 +version: 0.7.3 synopsis: Portable POSIX-compatibility layer. description: This package provides portable implementations of parts of the unix package. This package re-exports the unix @@ -57,16 +57,16 @@ Library cbits/mktemp.c extra-libraries: msvcrt - build-depends: Win32 >= 2.5.0.0 + build-depends: Win32 >= 2.5.0.0 && < 3 build-depends: directory >= 1.3.1 && < 1.4 - build-depends: filepath >= 1.0 && < 1.6 - build-depends: time >= 1.0 && < 1.13 + build-depends: filepath >= 1.4.1.0 && < 1.6 + build-depends: time >= 1.6.0.1 && < 1.13 other-modules: System.PosixCompat.Internal.Time else - build-depends: unix >= 2.6 && < 2.9 + build-depends: unix >= 2.7.2.0 && < 2.9 include-dirs: include includes: HsUnixCompat.h install-includes: HsUnixCompat.h