codex 0.3 → 0.3.0.2
raw patch · 3 files changed
+14/−2 lines, 3 filesdep ~codexPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: codex
API changes (from Hackage documentation)
Files
- codex.cabal +2/−2
- src/Codex.hs +6/−0
- src/Codex/Project.hs +6/−0
codex.cabal view
@@ -1,5 +1,5 @@ name: codex-version: 0.3+version: 0.3.0.2 synopsis: A ctags file generator for cabal project dependencies. description: This tool download and cache the source code of packages in your local hackage,@@ -76,7 +76,7 @@ , network >= 2.6 && < 2.7 , wreq , yaml - , codex == 0.3+ , codex == 0.3.0.2 source-repository head type: git
src/Codex.hs view
@@ -1,4 +1,10 @@+{-# LANGUAGE CPP #-} module Codex (Codex(..), defaultTagsFileName, Verbosity, module Codex) where++#if !MIN_VERSION_base(4,8,0)+import Control.Applicative ((<$>))+import Data.Traversable (traverse)+#endif import Control.Exception (try, SomeException) import Control.Lens ((^.))
src/Codex/Project.hs view
@@ -1,4 +1,10 @@+{-# LANGUAGE CPP #-} module Codex.Project where++#if !MIN_VERSION_base(4,8,0)+import Control.Applicative ((<$>))+import Data.Traversable (traverse)+#endif import Control.Exception (try, SomeException) import Data.Function