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
|
Index: b/statestack.cabal
===================================================================
--- a/statestack.cabal
+++ b/statestack.cabal
@@ -1,5 +1,6 @@
Name: statestack
Version: 0.3.1.1
+x-revision: 3
Synopsis: Simple State-like monad transformer with saveable and restorable state
Description: Simple State-like monad transformer where states can be saved to
and restored from an internal stack.
@@ -12,7 +13,7 @@ Category: Control
Build-type: Simple
Cabal-version: >=1.10
Bug-reports: http://github.com/diagrams/statestack/issues
-Tested-with: GHC ==7.10.3 || ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.6 || ==9.4.4
+Tested-with: GHC ==7.10.3 || ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.5 || ==9.8.2 || ==9.10.1
Source-repository head
type: git
location: git://github.com/diagrams/statestack
@@ -20,6 +21,6 @@ Source-repository head
Library
Default-language: Haskell2010
Exposed-modules: Control.Monad.StateStack
- Build-depends: base >= 4.8 && < 4.18,
+ Build-depends: base >= 4.8 && < 4.21,
mtl >= 2.1 && < 2.4,
transformers >= 0.4 && < 0.7
|