microlens 0.4.0.0 → 0.4.0.1
raw patch · 3 files changed
+6/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- microlens.cabal +1/−1
- src/Lens/Micro.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.4.0.1++* Fixed a bug that wasn't letting the package compile with GHC 8.0 (see issue #63).+ # 0.4.0.0 * Added `folding`.
microlens.cabal view
@@ -1,5 +1,5 @@ name: microlens-version: 0.4.0.0+version: 0.4.0.1 synopsis: A tiny part of the lens library with no dependencies description: This is an extract from <http://hackage.haskell.org/package/lens lens> (with no dependencies). It's not a toy lenses library, unsuitable for “real world”, but merely a small one. It is compatible with lens, and should have same performance. It also has better documentation.
src/Lens/Micro.hs view
@@ -5,6 +5,7 @@ UndecidableInstances, RankNTypes, ScopedTypeVariables,+MonoLocalBinds, Trustworthy #-}