microlens-mtl 0.2.0.3 → 0.2.1.0
raw patch · 3 files changed
+28/−16 lines, 3 files
Files
- CHANGELOG.md +9/−0
- microlens-mtl.cabal +18/−16
- src/Lens/Micro/Mtl.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,12 @@+# 0.2.1.0++* Export `Zoomed` type family.++# 0.2.0.3++* [#161](https://github.com/stevenfontanella/microlens/pull/161) Fix GHC 9.4 warning for using `~` without TypeOperators+* [#162](https://github.com/stevenfontanella/microlens/pull/162) Fix GHC warning for depending on StarIsType+ # 0.2.0.2 * Added support for mtl 2.3 and transformers 0.6 per [#152](https://github.com/stevenfontanella/microlens/issues/152).
microlens-mtl.cabal view
@@ -1,38 +1,40 @@ name: microlens-mtl-version: 0.2.0.3+version: 0.2.1.0 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. .- This package is a part of the <http://hackage.haskell.org/package/microlens microlens> family; see the readme <https://github.com/monadfix/microlens#readme on Github>.+ This package is a part of the <http://hackage.haskell.org/package/microlens microlens> family; see the readme <https://github.com/stevenfontanella/microlens#readme on Github>. license: BSD3 license-file: LICENSE author: Edward Kmett, Artyom Kazak maintainer: Steven Fontanella <steven.fontanella@gmail.com>-homepage: http://github.com/monadfix/microlens-bug-reports: http://github.com/monadfix/microlens/issues+homepage: http://github.com/stevenfontanella/microlens+bug-reports: http://github.com/stevenfontanella/microlens/issues -- copyright: category: Data, Lenses build-type: Simple extra-source-files: CHANGELOG.md cabal-version: >=1.10-tested-with: GHC==7.6.3- GHC==7.8.4- GHC==7.10.3- GHC==8.0.2- GHC==8.2.2- GHC==8.4.4- GHC==8.6.5- GHC==8.8.4- GHC==8.10.7+tested-with:+ GHC==9.12.1+ GHC==9.10.1+ GHC==9.8.4+ GHC==9.6.6+ GHC==9.4.8+ GHC==9.2.8 GHC==9.0.2- GHC==9.2.5- GHC==9.4.3+ GHC==8.10.7+ GHC==8.8.4+ GHC==8.6.5+ GHC==8.4.4+ GHC==8.2.2+ GHC==8.0.2 source-repository head type: git- location: git://github.com/monadfix/microlens.git+ location: https://github.com/stevenfontanella/microlens.git library exposed-modules: Lens.Micro.Mtl
src/Lens/Micro/Mtl.hs view
@@ -39,6 +39,7 @@ (<<%=), (<<.=), -- * Zooming+ Zoomed, zoom, magnify, )