diff --git a/hpath-io/CHANGELOG.md b/hpath-io/CHANGELOG.md index df12acc..046842d 100644 --- a/hpath-io/CHANGELOG.md +++ b/hpath-io/CHANGELOG.md @@ -1,5 +1,15 @@ # Revision history for hpath-io +## 0.10.1 -- 2020-01-13 + +* Move file check functions to HPath.IO +* Add 'doesExist' +* Exception handling of `doesExist`, `doesFileExist`, `doesDirectoryExist` has changed: only eNOENT is catched +* Exception handling of `isWritable` has changed: just a wrapper around `access` now +* switch exception handling to `safe-exceptions` +* Redo file reading API (readFileEOF dropped and now using streamly under the hood, added `readFileStream`) + + ## 0.10.0 -- 2020-01-04 * First version. Split from 'hpath', contains only the IO parts. diff --git a/hpath-io/hpath-io.cabal b/hpath-io/hpath-io.cabal index 8f35312..55dd857 100644 --- a/hpath-io/hpath-io.cabal +++ b/hpath-io/hpath-io.cabal @@ -1,5 +1,5 @@ name: hpath-io -version: 0.10.0 +version: 0.10.1 synopsis: High-level IO operations on files/directories description: High-level IO operations on files/directories, utilizing type-safe Paths -- bug-reports: