packages feed

microlens-mtl 0.1.7.0 → 0.1.7.1

raw patch · 5 files changed

+17/−3 lines, 5 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Lens.Micro.Mtl: infix 4 //=

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.1.7.1++* Added forgotten copyright/authorship information.+ # 0.1.7.0  * Added `preuse`.
LICENSE view
@@ -1,4 +1,5 @@-Copyright (c) 2015, Artyom+Copyright (c) 2013-2016 Edward Kmett,+              2015-2016 Artyom  All rights reserved. 
microlens-mtl.cabal view
@@ -1,5 +1,5 @@ name:                microlens-mtl-version:             0.1.7.0+version:             0.1.7.1 synopsis:            microlens support for Reader/Writer/State from mtl description:   This package contains functions (like 'view' or '+=') which work on 'MonadReader', 'MonadWriter', and 'MonadState' from the mtl package.@@ -7,7 +7,7 @@   This package is a part of the <http://hackage.haskell.org/package/microlens microlens> family; see the readme <https://github.com/aelve/microlens#readme on Github>. license:             BSD3 license-file:        LICENSE-author:              Artyom+author:              Edward Kmett, Artyom maintainer:          Artyom <yom@artyom.me> homepage:            http://github.com/aelve/microlens bug-reports:         http://github.com/aelve/microlens/issues
src/Lens/Micro/Mtl.hs view
@@ -11,6 +11,11 @@ {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}  +{- |+Module      :  Lens.Micro.Mtl+Copyright   :  (C) 2013-2016 Edward Kmett, 2015-2016 Artyom+License     :  BSD-style (see the file LICENSE)+-} module Lens.Micro.Mtl (   view, preview,
src/Lens/Micro/Mtl/Internal.hs view
@@ -17,6 +17,10 @@   {- |+Module      :  Lens.Micro.Mtl.Internal+Copyright   :  (C) 2013-2016 Edward Kmett, 2015-2016 Artyom+License     :  BSD-style (see the file LICENSE)+ This module lets you define your own instances of 'Zoom' and 'Magnify'.  The warning from "Lens.Micro.Internal" applies to this module as well. Don't export functions that have 'Zoom' or 'Magnify' in their type signatures. If you absolutely need to define an instance (e.g. for internal use), only do it for your own types, because otherwise I might add an instance to one of the microlens packages later and if our instances are different it might lead to subtle bugs.