pregame 0.1.4.1 → 0.1.4.2
raw patch · 2 files changed
+6/−3 lines, 2 filesdep +cmdthelinePVP ok
version bump matches the API change (PVP)
Dependencies added: cmdtheline
API changes (from Hackage documentation)
Files
- pregame.cabal +3/−2
- src/Pregame.hs +3/−1
pregame.cabal view
@@ -1,5 +1,5 @@ name: pregame-version: 0.1.4.1+version: 0.1.4.2 synopsis: Prelude counterpart description: Excessive Prelude styled imports. homepage: https://github.com/jxv/pregame@@ -35,6 +35,7 @@ transformers, text, tuple,- vector+ vector,+ cmdtheline hs-source-dirs: src default-language: Haskell2010
src/Pregame.hs view
@@ -31,6 +31,7 @@ , module System.IO.Error , module Safe , module Safe.Exact + , module System.Console.CmdTheLine , Cont, ContT -- , Error, ErrorT@@ -91,7 +92,8 @@ import System.IO import System.IO.Error import Safe hiding (at)-import Safe.Exact +import Safe.Exact+import System.Console.CmdTheLine hiding (enum, lastOf) import Control.Monad.Trans.Cont (Cont, ContT) import Control.Monad.Trans.Error (Error, ErrorT)