Bump versions
This commit is contained in:
parent
824aff1751
commit
117641c419
@ -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.
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,5 @@
|
||||
0.10.2
|
||||
* Add `parseAny` and the related QuasiQuoter
|
||||
0.10.1
|
||||
* Add quasi quoters for hpath
|
||||
0.10.0
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user