1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
Index: b/reactive-banana.cabal
===================================================================
--- a/reactive-banana.cabal
+++ b/reactive-banana.cabal
@@ -1,5 +1,6 @@
Name: reactive-banana
Version: 1.3.2.0
+x-revision : 4
Synopsis: Library for functional reactive programming (FRP).
Description:
Reactive-banana is a library for Functional Reactive Programming (FRP).
@@ -25,12 +26,15 @@ Maintainer: Heinrich Apfelmus <
Category: FRP
Cabal-version: 1.18
Build-type: Simple
-Tested-with: GHC == 9.4.1
- , GHC == 9.2.4
- , GHC == 8.10.7
- , GHC == 8.8.4
- , GHC == 8.6.5
- , GHC == 8.4.4
+Tested-with:
+ GHC == 9.8.1
+ , GHC == 9.6.3
+ , GHC == 9.4.8
+ , GHC == 9.2.8
+ , GHC == 8.10.7
+ , GHC == 8.8.4
+ , GHC == 8.6.5
+ , GHC == 8.4.4
extra-source-files: CHANGELOG.md,
doc/examples/*.hs
@@ -46,16 +50,16 @@ Library
hs-source-dirs: src
build-depends: base >= 4.2 && < 5,
- deepseq >= 1.4.3.0 && < 1.5,
+ deepseq >= 1.4.3.0 && < 1.6,
semigroups >= 0.13 && < 0.21,
- containers >= 0.5 && < 0.7,
+ containers >= 0.5 && < 0.8,
transformers >= 0.2 && < 0.7,
vault == 0.3.*,
unordered-containers >= 0.2.1.0 && < 0.3,
hashable >= 1.1 && < 1.5,
- pqueue >= 1.0 && < 1.5,
+ pqueue >= 1.0 && < 1.6,
stm >= 2.5 && < 2.6,
- these >= 0.2 && < 1.2
+ these >= 0.2 && < 1.3
exposed-modules:
Control.Event.Handler,
@@ -100,7 +104,7 @@ Test-Suite unit
Reactive.Banana.Test.Low.GraphGC
build-depends: base >= 4.7 && < 5,
containers,
- deepseq >= 1.4.3.0 && < 1.5,
+ deepseq >= 1.4.3.0 && < 1.6,
hashable,
pqueue,
reactive-banana,
@@ -108,8 +112,8 @@ Test-Suite unit
transformers,
tasty,
tasty-hunit,
- tasty-quickcheck >= 0.10.1.2 && < 0.11,
- QuickCheck >= 2.10 && < 2.15,
+ tasty-quickcheck >= 0.10.1.2 && < 0.12,
+ QuickCheck >= 2.10 && < 2.16,
unordered-containers,
vault,
these
@@ -140,4 +144,4 @@ Benchmark benchmark
, tasty-bench
hs-source-dirs: benchmark
main-is: Main.hs
- ghc-options: "-with-rtsopts=-A32m"
+ ghc-options: "-with-rtsopts=-A32m"
\ No newline at end of file
|