cabal-lenses 0.4 → 0.4.1
raw patch · 3 files changed
+5/−5 lines, 3 filesdep ~lensPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: lens
API changes (from Hackage documentation)
- CabalLenses.PackageDescription: condTreeComponentsL :: Lens (CondTree v_a5Jq c_a5Jr a_a5Js) (CondTree v_a8t0 c_a5Jr a_a5Js) [(Condition v_a5Jq, CondTree v_a5Jq c_a5Jr a_a5Js, Maybe (CondTree v_a5Jq c_a5Jr a_a5Js))] [(Condition v_a8t0, CondTree v_a8t0 c_a5Jr a_a5Js, Maybe (CondTree v_a8t0 c_a5Jr a_a5Js))]
+ CabalLenses.PackageDescription: condTreeComponentsL :: Lens (CondTree v_a7xl c_a7xm a_a7xn) (CondTree v_abUJ c_a7xm a_a7xn) [(Condition v_a7xl, CondTree v_a7xl c_a7xm a_a7xn, Maybe (CondTree v_a7xl c_a7xm a_a7xn))] [(Condition v_abUJ, CondTree v_abUJ c_a7xm a_a7xn, Maybe (CondTree v_abUJ c_a7xm a_a7xn))]
- CabalLenses.PackageDescription: condTreeConstraintsL :: Lens' (CondTree v_a5Jq c_a5Jr a_a5Js) c_a5Jr
+ CabalLenses.PackageDescription: condTreeConstraintsL :: Lens' (CondTree v_a7xl c_a7xm a_a7xn) c_a7xm
- CabalLenses.PackageDescription: condTreeDataL :: Lens' (CondTree v_a5Jq c_a5Jr a_a5Js) a_a5Js
+ CabalLenses.PackageDescription: condTreeDataL :: Lens' (CondTree v_a7xl c_a7xm a_a7xn) a_a7xn
Files
- CHANGELOG +2/−2
- cabal-lenses.cabal +2/−2
- lib/CabalLenses/Traversals/Internal.hs +1/−1
CHANGELOG view
@@ -1,3 +1,3 @@-0.3.1------+0.3.1, 0.4.1+------------ * Raise upper bounds of dependencies
cabal-lenses.cabal view
@@ -1,5 +1,5 @@ name: cabal-lenses-version: 0.4+version: 0.4.1 cabal-version: >=1.9.2 build-type: Simple license: BSD3@@ -23,7 +23,7 @@ library build-depends: base >=3 && <5,- lens >=4.0.1 && <4.5,+ lens >=4.0.1 && <4.6, unordered-containers >=0.2.3.3 && <0.3, Cabal >=1.16.0 && <1.21 exposed-modules:
lib/CabalLenses/Traversals/Internal.hs view
@@ -12,7 +12,7 @@ import Distribution.PackageDescription (CondTree(..), ConfVar) import Distribution.Package (Dependency(..)) import Data.Traversable (traverse)-import Control.Applicative (Applicative, pure, (<$>), (<*>))+import Control.Applicative (pure, (<$>), (<*>)) import Control.Lens (Traversal') type CondTree' a = CondTree ConfVar [Dependency] a