packages feed

microlens-ghc 0.4.2.0 → 0.4.2.1

raw patch · 5 files changed

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

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Lens.Micro.GHC: instance (c ~ d) => Lens.Micro.Internal.Each (Data.Map.Base.Map c a) (Data.Map.Base.Map d b) a b
+ Lens.Micro.GHC: instance c ~ d => Lens.Micro.Internal.Each (Data.Map.Base.Map c a) (Data.Map.Base.Map d b) a b

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.4.2.1++* Added forgotten copyright/authorship information.+ # 0.4.2.0  * New minor release (microlens-0.4.2).
LICENSE view
@@ -1,4 +1,5 @@-Copyright (c) 2015, Artyom+Copyright (c) 2013-2016 Edward Kmett,+              2015-2016 Artyom  All rights reserved. 
microlens-ghc.cabal view
@@ -1,5 +1,5 @@ name:                microlens-ghc-version:             0.4.2.0+version:             0.4.2.1 synopsis:            microlens + array, bytestring, containers, transformers description:   Use this package instead of <http://hackage.haskell.org/package/microlens microlens> if you don't mind depending on all dependencies here – @Lens.Micro.GHC@ reexports everything from @Lens.Micro@ and additionally provides orphan instances of microlens classes for packages coming with GHC (<http://hackage.haskell.org/package/array array>, <http://hackage.haskell.org/package/bytestring bytestring>, <http://hackage.haskell.org/package/containers containers>, <http://hackage.haskell.org/package/transfromers transformers>).@@ -9,7 +9,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/GHC.hs view
@@ -15,6 +15,10 @@   {- |+Module      :  Lens.Micro.GHC+Copyright   :  (C) 2013-2016 Edward Kmett, 2015-2016 Artyom+License     :  BSD-style (see the file LICENSE)+ By importing this module you get all functions and types from <http://hackage.haskell.org/package/microlens microlens>, as well as the following instances:  * 'at' for 'Map' and 'IntMap'
src/Lens/Micro/GHC/Internal.hs view
@@ -5,6 +5,11 @@   #-}  +{- |+Module      :  Lens.Micro.GHC.Internal+Copyright   :  (C) 2013-2016 Edward Kmett, 2015-2016 Artyom+License     :  BSD-style (see the file LICENSE)+-} module Lens.Micro.GHC.Internal (   IsByteString(..),