diff --git a/hpath-filepath/CHANGELOG.md b/hpath-filepath/CHANGELOG.md index 65eaed6..de7294c 100644 --- a/hpath-filepath/CHANGELOG.md +++ b/hpath-filepath/CHANGELOG.md @@ -1,5 +1,9 @@ # Revision history for hpath-filepath +## 0.10.2 -- 2020-01-18 + +* Add `isSpecialDirectoryEntry` + ## 0.10.0 -- 2020-01-04 * First version. Split from 'hpath', contains only the filepath ByteString manipulation parts. diff --git a/hpath-filepath/hpath-filepath.cabal b/hpath-filepath/hpath-filepath.cabal index 074ddf3..6d56b5b 100644 --- a/hpath-filepath/hpath-filepath.cabal +++ b/hpath-filepath/hpath-filepath.cabal @@ -1,5 +1,5 @@ name: hpath-filepath -version: 0.10.1 +version: 0.10.2 synopsis: ByteString based filepath manipulation description: ByteString based filepath manipulation, similar to 'filepath' package. This is POSIX only. -- bug-reports: diff --git a/hpath-io/CHANGELOG.md b/hpath-io/CHANGELOG.md index 046842d..b6d5e75 100644 --- a/hpath-io/CHANGELOG.md +++ b/hpath-io/CHANGELOG.md @@ -1,5 +1,20 @@ # Revision history for hpath-io +## 0.11.0 -- 2020-01-18 + +* `writeFile` not allows to set file mode and create file if it does not exist (this broke API) +* added various new functions: + * createDirIfMissing + * writeFileL (for lazy bytestring) + * isReadable + * isExecutable + * getModificationTime + * setModificationTime + * setModificationTimeHiRes + * getDirsFiles' (returns filenames instead of paths) + * withRawFilePath + * withHandle + ## 0.10.1 -- 2020-01-13 * Move file check functions to HPath.IO diff --git a/hpath-io/hpath-io.cabal b/hpath-io/hpath-io.cabal index 1086abe..c4258d0 100644 --- a/hpath-io/hpath-io.cabal +++ b/hpath-io/hpath-io.cabal @@ -1,5 +1,5 @@ name: hpath-io -version: 0.10.1 +version: 0.11.0 synopsis: High-level IO operations on files/directories description: High-level IO operations on files/directories, utilizing type-safe Paths -- bug-reports: @@ -40,7 +40,7 @@ library , bytestring >= 0.10.0.0 , exceptions , hpath >= 0.10 && < 0.11 - , hpath-filepath >= 0.10 && < 0.11 + , hpath-filepath >= 0.10.2 && < 0.11 , safe-exceptions >= 0.1 , streamly >= 0.7 , time >= 1.8 diff --git a/hpath/CHANGELOG b/hpath/CHANGELOG index f5a2fe7..89ad6ea 100644 --- a/hpath/CHANGELOG +++ b/hpath/CHANGELOG @@ -1,3 +1,5 @@ +0.10.2 + * Add `parseAny` and the related QuasiQuoter 0.10.1 * Add quasi quoters for hpath 0.10.0 diff --git a/hpath/hpath.cabal b/hpath/hpath.cabal index 47df8f9..b71ff7a 100644 --- a/hpath/hpath.cabal +++ b/hpath/hpath.cabal @@ -1,5 +1,5 @@ name: hpath -version: 0.10.1 +version: 0.10.2 synopsis: Support for well-typed paths description: Support for well-typed paths, utilizing ByteString under the hood. license: BSD3