packages feed

netwire 4.0.0 → 4.0.1

raw patch · 2 files changed

+4/−4 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Control/Wire/Wire.hs view
@@ -155,9 +155,9 @@     loop w' =         mkGen $ \dt x' ->             liftM (fmap fst *** loop) .-            mfix $ \(mx, _) ->+            mfix $ \ ~(mx, _) ->                 let feedbackErr = error "Feedback loop broken by inhibition" in-                stepWire w' dt (x', either feedbackErr snd mx)+                stepWire w' dt (x', either (const feedbackErr) snd mx)  instance (Monad m, Monoid e) => ArrowPlus (Wire e m) where     (<+>) = (<|>)
netwire.cabal view
@@ -1,5 +1,5 @@ Name:          netwire-Version:       4.0.0+Version:       4.0.1 Category:      Control, FRP Synopsis:      Flexible wire arrows for FRP Maintainer:    Ertugrul Söylemez <es@ertes.de>@@ -82,8 +82,8 @@ --     Default-language: Haskell2010 --     Default-extensions: --         Arrows---         DoRec --         OverloadedStrings+--         RecursiveDo --         TupleSections --     Hs-source-dirs: test --     Main-is: Main.hs