packages feed

unliftio-path 0.0.1.0 → 0.0.2.0

raw patch · 3 files changed

+11/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ UnliftIO.Path.Directory: makeAbsoluteDir :: (MonadThrow m, MonadIO m) => Path Rel Dir -> m (Path Abs Dir)
+ UnliftIO.Path.Directory: makeAbsoluteFile :: (MonadThrow m, MonadIO m) => Path Rel File -> m (Path Abs File)
+ UnliftIO.Path.Directory: makeRelativeToCurrentDirectoryDir :: (MonadThrow m, MonadIO m) => Path Abs Dir -> m (Path Rel Dir)
+ UnliftIO.Path.Directory: makeRelativeToCurrentDirectoryFile :: (MonadThrow m, MonadIO m) => Path Abs File -> m (Path Rel File)
+ UnliftIO.Path.Directory: renamePath :: MonadIO m => Path b t -> Path b' t -> m ()

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for unliftio-path -# v0.0.1.0+## v0.0.2.0++* Fix exports++## v0.0.1.0  * Mirror of most UnliftIO.Directory functions using `Path` instead of `FilePath`.
src/UnliftIO/Path/Directory.hs view
@@ -25,8 +25,13 @@ , getTemporaryDirectory , removeFile , renameFile+, renamePath , copyFile , copyFileWithMetadata+, makeAbsoluteDir+, makeAbsoluteFile+, makeRelativeToCurrentDirectoryDir+, makeRelativeToCurrentDirectoryFile , findExecutable , findExecutables , UnliftIO.Directory.exeExtension
unliftio-path.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           unliftio-path-version:        0.0.1.0+version:        0.0.2.0 synopsis:       UnliftIO using well-typed Paths. description:    UnliftIO using well-typed Paths. category:       Text