directory 1.0.1.1 → 1.0.1.2
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~basedep ~filepathPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, filepath
API changes (from Hackage documentation)
Files
- System/Directory.hs +1/−1
- directory.cabal +3/−3
System/Directory.hs view
@@ -685,7 +685,7 @@ #else withCString fpath $ \pInPath -> allocaBytes long_path_size $ \pOutPath ->- do c_realpath pInPath pOutPath+ do throwErrnoPathIfNull "canonicalizePath" fpath $ c_realpath pInPath pOutPath path <- peekCString pOutPath #endif return (normalise path)
directory.cabal view
@@ -1,5 +1,5 @@ name: directory-version: 1.0.1.1+version: 1.0.1.2 license: BSD3 license-file: LICENSE maintainer: libraries@haskell.org@@ -30,9 +30,9 @@ includes: HsDirectory.h install-includes: HsDirectory.h HsDirectoryConfig.h extensions: CPP, ForeignFunctionInterface- build-depends: base >= 4.1 && < 4.3,+ build-depends: base >= 4.2 && < 4.4, old-time >= 1.0 && < 1.1,- filepath >= 1.1 && < 1.2+ filepath >= 1.1 && < 1.3 if !impl(nhc98) { if os(windows) { build-depends: Win32