packages feed

reactive-banana 0.7.1.0 → 0.7.1.1

raw patch · 2 files changed

+5/−5 lines, 2 filesdep ~hashabledep ~test-frameworkdep ~test-framework-hunitPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: hashable, test-framework, test-framework-hunit

API changes (from Hackage documentation)

Files

reactive-banana.cabal view
@@ -1,5 +1,5 @@ Name:                reactive-banana-Version:             0.7.1.0+Version:             0.7.1.1 Synopsis:            Practical library for functional reactive programming (FRP). Description:              Reactive-banana is a practical library for Functional Reactive Programming (FRP).@@ -60,7 +60,7 @@                         BangPatterns      build-depends:      unordered-containers >= 0.2.1.0 && < 0.3,-                        hashable == 1.1.*+                        hashable >= 1.1 && < 1.3  --      CPP-options:    -DUseExtensions         @@ -90,8 +90,8 @@     main-is:            Reactive/Banana/Test.hs     build-depends:      base >= 4.2 && < 5,                         HUnit >= 1.2 && < 2,-                        test-framework == 0.6.*,-                        test-framework-hunit == 0.2.*,+                        test-framework >= 0.6 && < 0.9,+                        test-framework-hunit >= 0.2 && < 0.4,                         reactive-banana, vault, containers, transformers,                         unordered-containers, hashable 
src/Reactive/Banana/Internal/EventBehavior1.hs view
@@ -70,7 +70,7 @@  changesB    = liftCached1 $ \(lx,px) -> Prim.tagFuture lx px --- Note: to enable more recursion,+-- Note: To enable more recursion, -- first create the latch and then create the event that is accumulated stepperB a  = \c1 -> mkCached $ mdo     l  <- Prim.stepperL a p1