packages feed

fclabels 0.11.1.1 → 0.11.2

raw patch · 2 files changed

+9/−6 lines, 2 filesdep ~template-haskellPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: template-haskell

API changes (from Hackage documentation)

Files

fclabels.cabal view
@@ -1,5 +1,5 @@ Name:            fclabels-Version:         0.11.1.1+Version:         0.11.2 Author:          Sebastiaan Visser, Erik Hesselink, Chris Eidhof, Sjoerd Visscher. Synopsis:        First class accessor labels implemented as lenses. @@ -116,8 +116,10 @@                  .                  .                  > CHANGELOG-                 >   0.11.1 -> 0.11.1.1-                 >   - Improved TH support for multiple constructor datatypes.+                 >   0.11.1.1 -> 0.11.2+                 >   - Relaxed template haskell dependency constraint+                 >     for GHC 7.2+                 >   - Removed redundant import warnings.  Maintainer:      Sebastiaan Visser <haskell@fvisser.nl> License:         BSD3@@ -133,7 +135,10 @@                    Data.Record.Label.Monadic   Other-Modules:   Data.Record.Label.TH   Build-Depends:   base >= 3 && < 5-                 , template-haskell >= 2.2 && < 2.6+                 , template-haskell >= 2.2 && < 2.7                  , mtl >= 1.1 && <= 2.1   GHC-Options:     -Wall +Source-Repository head+  Type:            git+  Location:        git://github.com/sebastiaanvisser/fclabels.git
src/Data/Record/Label/Core.hs view
@@ -4,8 +4,6 @@ import Prelude hiding ((.), id) import Control.Applicative import Control.Category-import Control.Monad.State-import Control.Monad.Reader  data Point f i o = Point   { _get :: f -> o