packages feed

app-lens 0.1.0.1 → 0.1.0.3

raw patch · 2 files changed

+5/−4 lines, 2 filesdep ~basedep ~lensPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base, lens

API changes (from Hackage documentation)

- Control.LensFunction.Exception: instance Exception ChangedObservationException
- Control.LensFunction.Exception: instance Exception ConstantUpdateException
- Control.LensFunction.Exception: instance Exception NoLUBException
- Control.LensFunction.Exception: instance Exception ShapeMismatchException
- Control.LensFunction.Exception: instance Exception SomeLensFunctionException
- Control.LensFunction.Exception: instance Show ChangedObservationException
- Control.LensFunction.Exception: instance Show ConstantUpdateException
- Control.LensFunction.Exception: instance Show NoLUBException
- Control.LensFunction.Exception: instance Show ShapeMismatchException
- Control.LensFunction.Exception: instance Show SomeLensFunctionException
- Control.LensFunction.Exception: instance Typeable ChangedObservationException
- Control.LensFunction.Exception: instance Typeable ConstantUpdateException
- Control.LensFunction.Exception: instance Typeable NoLUBException
- Control.LensFunction.Exception: instance Typeable ShapeMismatchException
- Control.LensFunction.Exception: instance Typeable SomeLensFunctionException
+ Control.LensFunction.Exception: instance GHC.Exception.Exception Control.LensFunction.Exception.ChangedObservationException
+ Control.LensFunction.Exception: instance GHC.Exception.Exception Control.LensFunction.Exception.ConstantUpdateException
+ Control.LensFunction.Exception: instance GHC.Exception.Exception Control.LensFunction.Exception.NoLUBException
+ Control.LensFunction.Exception: instance GHC.Exception.Exception Control.LensFunction.Exception.ShapeMismatchException
+ Control.LensFunction.Exception: instance GHC.Exception.Exception Control.LensFunction.Exception.SomeLensFunctionException
+ Control.LensFunction.Exception: instance GHC.Show.Show Control.LensFunction.Exception.ChangedObservationException
+ Control.LensFunction.Exception: instance GHC.Show.Show Control.LensFunction.Exception.ConstantUpdateException
+ Control.LensFunction.Exception: instance GHC.Show.Show Control.LensFunction.Exception.NoLUBException
+ Control.LensFunction.Exception: instance GHC.Show.Show Control.LensFunction.Exception.ShapeMismatchException
+ Control.LensFunction.Exception: instance GHC.Show.Show Control.LensFunction.Exception.SomeLensFunctionException

Files

Control/LensFunction.hs view
@@ -2,7 +2,8 @@  -- Required for sequenceL, if we use var Laarhoven repl. {-# LANGUAGE NoMonomorphismRestriction #-}-{-# LANGUAGE Safe #-}+{-# LANGUAGE Trustworthy #-}+  {-| This module provides an "applicative" (functional) way of composing
app-lens.cabal view
@@ -1,5 +1,5 @@ name:     app-lens-version:  0.1.0.1+version:  0.1.0.3 synopsis: applicative (functional) bidirectional programming beyond composition chains   description:@@ -120,10 +120,10 @@     DeriveDataTypeable, DeriveFunctor, DeriveFoldable, DeriveTraversable      build-depends:  -    base       >=4.7   && < 4.9, +    base       >=4.7   && < 4.10,      containers >=0.5   && < 0.6,      mtl        >=2.2   && < 2.4,-    lens       >=4     && < 4.13+    lens       >=4     && < 4.15    default-language: Haskell2010