From 0ff38085447d1defd678fefdd087cf7d09875cc9 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Mon, 20 Jan 2020 20:19:45 +0100 Subject: [PATCH] Bump versions --- hpath-filepath/hpath-filepath.cabal | 2 +- hpath-io/CHANGELOG.md | 7 +++++++ hpath-io/hpath-io.cabal | 4 ++-- hpath/CHANGELOG | 7 +++++++ hpath/hpath.cabal | 2 +- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/hpath-filepath/hpath-filepath.cabal b/hpath-filepath/hpath-filepath.cabal index 6d56b5b..a6e188c 100644 --- a/hpath-filepath/hpath-filepath.cabal +++ b/hpath-filepath/hpath-filepath.cabal @@ -1,5 +1,5 @@ name: hpath-filepath -version: 0.10.2 +version: 0.10.3 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 b6d5e75..38e62f1 100644 --- a/hpath-io/CHANGELOG.md +++ b/hpath-io/CHANGELOG.md @@ -1,5 +1,12 @@ # Revision history for hpath-io +## 0.12.0 -- 2020-01-20 + +* breaking API changes + * RelC and Fn were removed from `hpath` + * further changes to `parseAny` + + ## 0.11.0 -- 2020-01-18 * `writeFile` not allows to set file mode and create file if it does not exist (this broke API) diff --git a/hpath-io/hpath-io.cabal b/hpath-io/hpath-io.cabal index c4258d0..f1ce5ee 100644 --- a/hpath-io/hpath-io.cabal +++ b/hpath-io/hpath-io.cabal @@ -1,5 +1,5 @@ name: hpath-io -version: 0.11.0 +version: 0.12.0 synopsis: High-level IO operations on files/directories description: High-level IO operations on files/directories, utilizing type-safe Paths -- bug-reports: @@ -39,7 +39,7 @@ library , IfElse , bytestring >= 0.10.0.0 , exceptions - , hpath >= 0.10 && < 0.11 + , hpath >= 0.11 && < 0.12 , hpath-filepath >= 0.10.2 && < 0.11 , safe-exceptions >= 0.1 , streamly >= 0.7 diff --git a/hpath/CHANGELOG b/hpath/CHANGELOG index 89ad6ea..13724f5 100644 --- a/hpath/CHANGELOG +++ b/hpath/CHANGELOG @@ -1,3 +1,10 @@ +0.11.0 + * Many API breaking changes + * Remove RelC and Fn, because they complicate API/break semantics (see #29) + * Redo 'parseAny' + * Unexpose HPath.Internal + * Don't preserve trailing path separators (if you need to pass something to a C function that way, do it manually) + * Added `rooPath`, `isRootPath`, `getAllComponents`, `getAllComponentsAfterRoot` 0.10.2 * Add `parseAny` and the related QuasiQuoter 0.10.1 diff --git a/hpath/hpath.cabal b/hpath/hpath.cabal index a8c66db..3e720bc 100644 --- a/hpath/hpath.cabal +++ b/hpath/hpath.cabal @@ -1,5 +1,5 @@ name: hpath -version: 0.10.2 +version: 0.11.0 synopsis: Support for well-typed paths description: Support for well-typed paths, utilizing ByteString under the hood. license: BSD3