cabal-cargs 0.7.1 → 0.7.2
raw patch · 3 files changed
+9/−4 lines, 3 filesdep ~cabal-lensesPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: cabal-lenses
API changes (from Hackage documentation)
Files
- CHANGELOG +4/−0
- cabal-cargs.cabal +4/−3
- lib/CabalCargs/CompilerArgs.hs +1/−1
CHANGELOG view
@@ -1,3 +1,7 @@+0.7.2+-----+* Build/tested with GHC 7.8.3+ 0.7.1 ----- * Raise upper bounds of dependencies
cabal-cargs.cabal view
@@ -1,5 +1,5 @@ name: cabal-cargs-version: 0.7.1+version: 0.7.2 cabal-version: >=1.9.2 build-type: Simple license: BSD3@@ -8,8 +8,9 @@ synopsis: A command line program for extracting compiler arguments from a cabal file. description: For further details please consult the <https://github.com/dan-t/cabal-cargs README>.-category: Utils+category: Utils, Development author: Daniel Trstenjak+tested-with: GHC ==7.6.2 GHC ==7.6.3 GHC ==7.8.3 extra-source-files: README.md CHANGELOG@@ -47,7 +48,7 @@ system-filepath >=0.4.9 && <0.5, system-fileio >=0.3.12 && <0.4, unordered-containers >=0.2.3.3 && <0.3,- cabal-lenses >=0.1 && <0.4,+ cabal-lenses ==0.4.*, Cabal >=1.16 && <1.21 exposed-modules: CabalCargs.Args
lib/CabalCargs/CompilerArgs.hs view
@@ -133,7 +133,7 @@ where buildInfoFields = concatMap (^. B.field field) buildInfos - dependencies = pkgDescrp ^.. CL.dependencyIf condVars section . CL.depPackageName . CL.pkgNameString+ dependencies = pkgDescrp ^.. CL.dependencyIf condVars section . CL.packageName . _Wrapped buildInfos = pkgDescrp ^.. CL.buildInfoIf condVars section pkgDescrp = Spec.pkgDescrp spec condVars = Spec.condVars spec