microlens-platform 0.1.3.0 → 0.1.4.0
raw patch · 3 files changed
+13/−11 lines, 3 filesdep ~microlensdep ~microlens-ghcPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: microlens, microlens-ghc
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- microlens-platform.cabal +6/−4
- src/Lens/Micro/Platform.hs +3/−7
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.1.4.0++* New minor release (microlens-0.3.4).+ # 0.1.3.0 * Added Safe Haskell pragmas.
microlens-platform.cabal view
@@ -1,9 +1,11 @@ name: microlens-platform-version: 0.1.3.0+version: 0.1.4.0 synopsis: Feature-complete microlens description:- This package exports a module which is the recommended starting point for using <http://hackage.haskell.org/package/microlens microlens> if you aren't trying to keep your dependencies minimal. By importing @Lens.Micro.Platform@ you get all functions and instances from <http://hackage.haskell.org/package/microlens microlens>, <http://hackage.haskell.org/package/microlens-mtl microlens-mtl>, <http://hackage.haskell.org/package/microlens-ghc microlens-ghc>, as well as instances for @Vector@, @Text@, and @HashMap@.+ This package exports a module which is the recommended starting point for using <http://hackage.haskell.org/package/microlens microlens> if you aren't trying to keep your dependencies minimal. By importing @Lens.Micro.Platform@ you get all functions and instances from <http://hackage.haskell.org/package/microlens microlens>, <http://hackage.haskell.org/package/microlens-th microlens-th>, <http://hackage.haskell.org/package/microlens-mtl microlens-mtl>, <http://hackage.haskell.org/package/microlens-ghc microlens-ghc>, as well as instances for @Vector@, @Text@, and @HashMap@. .+ The minor and major versions of microlens-platform are incremented whenever the minor and major versions of any other microlens package are incremented, so you can depend on the exact version of microlens-platform without specifying the version of microlens (microlens-mtl, etc) you need.+ . 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@@ -27,8 +29,8 @@ -- other-extensions: build-depends: base >=4.5 && <5 , hashable >=1.1.2.3 && <1.3- , microlens ==0.3.3.*- , microlens-ghc ==0.2.1.*+ , microlens ==0.3.4.*+ , microlens-ghc ==0.3.0.* , microlens-mtl ==0.1.5.* , microlens-th ==0.2.1.* , text >=0.11 && <1.3
src/Lens/Micro/Platform.hs view
@@ -7,9 +7,7 @@ Trustworthy #-} --- without -fno-warn-dodgy-exports it complains about Lens.Micro.GHC--- exporting nothing (and I want the export to be seen in the Haddocks)-{-# OPTIONS_GHC -fno-warn-orphans -fno-warn-dodgy-exports #-}+{-# OPTIONS_GHC -fno-warn-orphans #-} #ifndef MIN_VERSION_base #define MIN_VERSION_base(x,y,z) 1@@ -34,19 +32,17 @@ -} module Lens.Micro.Platform (- module Lens.Micro,+ module Lens.Micro.GHC, module Lens.Micro.Mtl, module Lens.Micro.TH,- module Lens.Micro.GHC, ) where -import Lens.Micro import Lens.Micro.Internal+import Lens.Micro.GHC import Lens.Micro.Mtl import Lens.Micro.TH-import Lens.Micro.GHC () import Data.Hashable import Data.Int