cabal-info 0.1.0.0 → 0.2.1
raw patch · 2 files changed
+4/−3 lines, 2 filesdep ~Cabaldep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: Cabal, base
API changes (from Hackage documentation)
Files
- cabal-info.cabal +3/−3
- cabal-info/Args.hs +1/−0
cabal-info.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: cabal-info-version: 0.1.0.0+version: 0.2.1 synopsis: Read information from cabal files description: Have you ever needed to get information from a cabal file in a shell@@ -37,7 +37,7 @@ library exposed-modules: Cabal.Info- build-depends: base >=4.8 && <4.9+ build-depends: base >=4.8 && <5 , Cabal , directory , filepath@@ -50,7 +50,7 @@ other-modules: Args , Describe , Fields- build-depends: base >=4.8 && <4.9+ build-depends: base >=4.8 && <5 , cabal-info , Cabal , filepath
cabal-info/Args.hs view
@@ -2,6 +2,7 @@ module Args where import Data.Char (toLower)+import Data.Monoid ((<>)) import Options.Applicative import Distribution.PackageDescription (FlagAssignment, FlagName(..)) import Distribution.System (Arch(..), OS(..))