nemesis 2013.6.22 → 2013.7.27
raw patch · 2 files changed
+4/−6 lines, 2 filesdep ~airPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: air
API changes (from Hackage documentation)
Files
- nemesis.cabal +2/−2
- src/System/Nemesis.hs +2/−4
nemesis.cabal view
@@ -1,5 +1,5 @@ Name: nemesis-Version: 2013.6.22+Version: 2013.7.27 Build-type: Simple Synopsis: a task management tool for Haskell Description: Organize common shell tasks into a meaningful tree like structure with dependency tracking@@ -32,7 +32,7 @@ , mtl , process , containers- , air >= 2013.6.22+ , air >= 2013.7.18 , dlist , Glob , directory
src/System/Nemesis.hs view
@@ -4,15 +4,13 @@ module System.Nemesis where import Prelude ()-import Air.Env hiding (lookup, get)+import Air.Env hiding (lookup) import Air.TH hiding (get) import Control.Monad.State hiding (State, join) import Data.List (sort)-import Data.Map (Map, insert, empty, lookup, elems)+import Data.Map (Map, insert, lookup, elems) import System.Environment-import System.Nemesis.Util import Text.Printf-import System.Exit (exitWith, ExitCode(..)) newtype ShowIO = ShowIO {unShowIO :: IO () }