packages feed

fsnotify 0.1.0.2 → 0.1.0.3

raw patch · 3 files changed

+9/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,6 +1,11 @@ Changes ======= +Version 0.1.0.3+---------------++* Fix the tests+ Version 0.1.0.2 --------------- 
fsnotify.cabal view
@@ -1,5 +1,5 @@ Name:                   fsnotify-Version:                0.1.0.2+Version:                0.1.0.3 Author:                 Mark Dittmer <mark.s.dittmer@gmail.com> Maintainer:             Greg Weber <greg@gregweber.info>, Roman Cheplyaka <roma@ro-che.info> License:                BSD3
test/EventUtils.hs view
@@ -8,6 +8,8 @@ import Control.Applicative import Control.Monad import Data.IORef+import Data.List (sortBy)+import Data.Ord (comparing) import Filesystem.Path import Filesystem.Path.CurrentOS import System.FSNotify@@ -89,7 +91,7 @@   a <- gatherEvents poll w path   action   evs <- wait a-  matchEvents pats evs+  matchEvents pats $ sortBy (comparing eventTime) evs  testDirPath :: FilePath testDirPath = decodeString (unsafePerformIO getCurrentDirectory) </> "testdir"