packages feed

fsnotify 0.1 → 0.1.0.1

raw patch · 3 files changed

+29/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

+ CHANGELOG.md view
@@ -0,0 +1,22 @@+Changes+=======++Version 0.1.0.1+---------------++Include CHANGELOG.md and README.md in the source distribution.++Version 0.1+-----------++* Allow to stop a listening job. Note this changes the return type of watching+  functions from `()` to `IO ()`.+* Previously, some care was taken to prevent multiple callbacks from running+  simultaneously. It is now the user's responsibility. See+  [#43](https://github.com/haskell-fswatch/hfsnotify/issues/43) for details.+* Previously, paths returned to callbacks were relative on Windows. Now they are+  absolute, like on the other platforms.+* The `WatchConfig` type has changed. Previously, it only specified debouncing+  parameters. Now it also contains polling parameters.+* The `isPollingManager` function is added to determine, at runtime, whether the+  polling implementation is used.
+ README.md view
@@ -0,0 +1,4 @@+hfsnotify+=========++Unified Haskell interface for basic file system notifications.
fsnotify.cabal view
@@ -1,5 +1,5 @@ Name:                   fsnotify-Version:                0.1+Version:                0.1.0.1 Author:                 Mark Dittmer <mark.s.dittmer@gmail.com> Maintainer:             Greg Weber <greg@gregweber.info>, Roman Cheplyaka <roma@ro-che.info> License:                BSD3@@ -13,6 +13,8 @@ Cabal-Version:          >= 1.8 Build-Type:             Simple Extra-Source-Files:+  README.md+  CHANGELOG.md   test/test.hs   test/EventUtils.hs