packages feed

twitch 0.1.7.0 → 0.1.7.1

raw patch · 2 files changed

+4/−4 lines, 2 filesdep ~basePVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

Dependency ranges changed: base

API changes (from Hackage documentation)

+ Twitch: infixl 8 |#

Files

README.md view
@@ -17,8 +17,8 @@ import System.Process ( system )  main = defaultMain $ do-   "*.md"   |> \filePath -> system $ "pandoc -t html " ++ filePath-   "*.html" |> \_ -> system $ "osascript refreshSafari.AppleScript"+   "*.md"   |> \filePath -> system ("pandoc -t html " ++ filePath)+   "*.html" |> \_ -> system "osascript refreshSafari.AppleScript" ```  Rules are specified in the `Dep` (for Dependency) monad. The library takes advantage
twitch.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                twitch-version:             0.1.7.0+version:             0.1.7.1 synopsis:            A high level file watcher DSL description:  Twitch is a monadic DSL and library for file watching.@@ -57,7 +57,7 @@                   , MultiParamTypeClasses                   , TypeSynonymInstances                   , TemplateHaskell-  build-depends: base >=4.5 && <4.9+  build-depends: base >=4.5 && <5.0                , directory                , filepath                , transformers