fsnotify 0.0.6 → 0.0.7
raw patch · 2 files changed
+5/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ System.FSNotify: type Action = Event -> IO ()
+ System.FSNotify: type ActionPredicate = Event -> Bool
+ System.FSNotify: type EventChannel = Chan Event
Files
- fsnotify.cabal +1/−1
- src/System/FSNotify.hs +4/−1
fsnotify.cabal view
@@ -1,5 +1,5 @@ Name: fsnotify-Version: 0.0.6+Version: 0.0.7 Author: Mark Dittmer <mark.s.dittmer@gmail.com> Maintainer: Mark Dittmer <mark.s.dittmer@gmail.com>, Greg Weber <greg@gregweber.info> License: BSD3
src/System/FSNotify.hs view
@@ -8,7 +8,10 @@ module System.FSNotify ( Event(..)- + , EventChannel+ , Action+ , ActionPredicate+ -- * Starting/Stopping , WatchManager , withManager