microlens-platform 0.3.1.1 → 0.3.2.0
raw patch · 3 files changed
+8/−11 lines, 3 filesdep ~microlensdep ~microlens-ghcdep ~microlens-mtlPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: microlens, microlens-ghc, microlens-mtl
API changes (from Hackage documentation)
- Lens.Micro.Platform: instance (c ~ d) => Lens.Micro.Internal.Each (Data.HashMap.Base.HashMap c a) (Data.HashMap.Base.HashMap d b) a b
+ Lens.Micro.Platform: instance c ~ d => Lens.Micro.Internal.Each (Data.HashMap.Base.HashMap c a) (Data.HashMap.Base.HashMap d b) a b
Files
- CHANGELOG.md +4/−0
- microlens-platform.cabal +4/−4
- src/Lens/Micro/Platform.hs +0/−7
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.3.2.0++* New minor release (microlens-0.4.5, microlens-ghc-0.4.5, microlens-th-0.1.8).+ # 0.3.1.1 * Reexport `Lens.Micro` explicitly to make it clearer that it's exported.
microlens-platform.cabal view
@@ -1,5 +1,5 @@ name: microlens-platform-version: 0.3.1.1+version: 0.3.2.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-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@.@@ -30,9 +30,9 @@ -- other-extensions: build-depends: base >=4.5 && <5 , hashable >=1.1.2.3 && <1.3- , microlens ==0.4.4.*- , microlens-ghc ==0.4.4.*- , microlens-mtl ==0.1.7.*+ , microlens ==0.4.5.*+ , microlens-ghc ==0.4.5.*+ , microlens-mtl ==0.1.8.* , microlens-th ==0.4.0.* , text >=0.11 && <1.3 , unordered-containers >=0.2.4 && <0.3
src/Lens/Micro/Platform.hs view
@@ -73,13 +73,6 @@ #endif -(<&>) :: Functor f => f a -> (a -> b) -> f b-as <&> f = f <$> as-{-# INLINE (<&>) #-}--infixl 1 <&>-- type instance Index (HashMap k a) = k type instance IxValue (HashMap k a) = a type instance Index (Vector.Vector a) = Int