microlens-mtl 0.2.0 → 0.2.0.1
raw patch · 4 files changed
+5/−13 lines, 4 files
Files
- CHANGELOG.md +4/−0
- microlens-mtl.cabal +1/−1
- src/Lens/Micro/Mtl.hs +0/−6
- src/Lens/Micro/Mtl/Internal.hs +0/−6
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.2.0.1++* No more conditional `Safe` (see [#122](https://github.com/monadfix/microlens/issues/122)).+ # 0.2.0 * Removed of equality constraints on `Zoom` and `Magnify`, as was done in `lens` earlier. This allows instances of `Zoom` and `Magnify` for `FreeT`. (Thanks to @treeowl.)
microlens-mtl.cabal view
@@ -1,5 +1,5 @@ name: microlens-mtl-version: 0.2.0+version: 0.2.0.1 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.
src/Lens/Micro/Mtl.hs view
@@ -4,13 +4,7 @@ {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE TypeFamilies #-}---- Lens.Micro.Internal is either Trustworthy or Unsafe-#if __GLASGOW_HASKELL__ >= 708-{-# LANGUAGE Safe #-}-#else {-# LANGUAGE Trustworthy #-}-#endif -- This is needed because ErrorT is deprecated. {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}
src/Lens/Micro/Mtl/Internal.hs view
@@ -8,13 +8,7 @@ {-# LANGUAGE RankNTypes #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE KindSignatures #-}---- Lens.Micro.Internal is either Trustworthy or Unsafe-#if __GLASGOW_HASKELL__ >= 708-{-# LANGUAGE Safe #-}-#else {-# LANGUAGE Trustworthy #-}-#endif -- This is needed because ErrorT is deprecated. {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}