packages feed

reactive-banana 0.8.0.2 → 0.8.0.3

raw patch · 2 files changed

+5/−5 lines, 2 filesdep ~containersPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

Dependency ranges changed: containers

API changes (from Hackage documentation)

+ Reactive.Banana.Frameworks: data Future a

Files

reactive-banana.cabal view
@@ -1,5 +1,5 @@ Name:                reactive-banana-Version:             0.8.0.2+Version:             0.8.0.3 Synopsis:            Library for functional reactive programming (FRP). Description:     Reactive-banana is a library for Functional Reactive Programming (FRP).@@ -58,7 +58,7 @@                         NoMonomorphismRestriction          build-depends:      base >= 4.2 && < 5,-                        containers >= 0.3 && < 0.6,+                        containers >= 0.5 && < 0.6,                         transformers >= 0.2 && < 0.5,                         vault == 0.3.* 
src/Reactive/Banana/Frameworks.hs view
@@ -16,7 +16,7 @@     compile, Frameworks,     module Control.Event.Handler,     fromAddHandler, fromChanges, fromPoll,-    reactimate, reactimate', initial, changes, imposeChanges,+    reactimate, Future, reactimate', initial, changes, imposeChanges,     FrameworksMoment(..), execute, liftIOLater,     -- $liftIO     module Control.Monad.IO.Class,@@ -279,8 +279,8 @@ actuate = Prim.actuate . unEN  -- | Pause an event network.--- Immediately stop producing output and--- unregister all event handlers for inputs.+-- Immediately stop producing output.+-- (In a future version, it will also unregister all event handlers for inputs.) -- Hence, the network stops responding to input events, -- but it's state will be preserved. --