packages feed

fortytwo 1.0.0 → 1.0.1

raw patch · 3 files changed

+2/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

fortytwo.cabal view
@@ -1,5 +1,5 @@ name:                fortytwo-version:1.0.0+version:1.0.1 synopsis:            Interactive terminal prompt description:         List of Prompt helpers to pimp the UIs of your haskell programs homepage:            https://github.com/gianlucaguarini/fortytwo#readme
src/FortyTwo/Renderers/Question.hs view
@@ -14,7 +14,6 @@       putStr message       setSGR [Reset]   | messageType == Answer = do-      setSGR [SetConsoleIntensity BoldIntensity]       setSGR [SetColor Foreground Dull Cyan]       putStr $ " " ++ message       setSGR [Reset]
src/FortyTwo/Utils.hs view
@@ -6,6 +6,7 @@ import System.IO (hSetBuffering, hFlush, hSetEcho, hReady, stdin, stdout, BufferMode(..)) import Data.List (findIndex, findIndices, elemIndex, intercalate) import Control.Monad (when)+import Control.Applicative ((<$>)) import Data.Maybe (fromJust) import FortyTwo.Types(Option(..), Options) import FortyTwo.Constants (emptyString)