packages feed

fortytwo 1.0.4 → 1.0.5

raw patch · 2 files changed

+10/−12 lines, 2 filesdep −asyncdep −processdep ~ansi-terminaldep ~basedep ~doctestPVP ok

version bump matches the API change (PVP)

Dependencies removed: async, process

Dependency ranges changed: ansi-terminal, base, doctest, hspec

API changes (from Hackage documentation)

Files

README.md view
@@ -73,7 +73,7 @@ ```hs import FortyTwo (select) -main :: IO Bool+main :: IO String main = select          "What's your favourite color?"          ["Red", "Yellow", "Blue"]@@ -83,7 +83,7 @@ ```hs import FortyTwo (selectWithDefault) -main :: IO Bool+main :: IO String main = selectWithDefault          "What's your favourite color?"          ["Red", "Yellow", "Blue"]@@ -96,7 +96,7 @@ ```hs import FortyTwo (multiselect) -main :: IO Bool+main :: IO [String] main = multiselect          "What are your favourite films?"          ["Titanic", "Matrix", "The Gladiator"]@@ -106,7 +106,7 @@ ```hs import FortyTwo (multiselectWithDefault) -main :: IO Bool+main :: IO [String] main = multiselectWithDefault          "What are your favourite films?"          ["Titanic", "Matrix", "The Gladiator"]
fortytwo.cabal view
@@ -1,5 +1,5 @@ name:                fortytwo-version:1.0.4+version:1.0.5 synopsis:            Interactive terminal prompt description:         List of Prompt helpers to pimp the UIs of your haskell programs homepage:            https://github.com/gianlucaguarini/fortytwo#readme@@ -36,7 +36,7 @@                        FortyTwo.Renderers.Multiselect   build-depends:       base >= 4.7 && < 5,                        text <= 1.3,-                       ansi-terminal >= 0.6.0.0 && <= 0.9+                       ansi-terminal >= 0.6.0.0 && <= 0.8.2   default-language:    Haskell2010  executable             demo@@ -63,10 +63,8 @@                      Specs.Utils   hs-source-dirs:    test   build-depends:     fortytwo,-                     base >=4.9 && <5,-                     process >=1.4 && <1.7,-                     async >=2.1 && <2.2,-                     hspec >= 2.2+                     base >= 4.7 && < 5,+                     hspec >= 2.6.1  Test-Suite doctest   type:              exitcode-stdio-1.0@@ -74,8 +72,8 @@   main-is:           doctests.hs   hs-source-dirs:    test   build-depends:     fortytwo,-                     base,-                     doctest >= 0.8.0+                     base >= 4.7 && < 5,+                     doctest >= 0.16.0.1  source-repository head   type:     git