ether 0.3.1.0 → 0.3.1.1
raw patch · 4 files changed
+10/−7 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +8/−1
- ether.cabal +1/−1
- src/Control/Monad/Ether/State/Class.hs +0/−4
- test/Regression.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,10 @@+0.3.1.1+-------++* Fix GHC 7.8 test issue.+* Remove unused imports.++ 0.3.1.0 ------- @@ -7,7 +14,7 @@ 0.3.0.0 ------- -* `MonadBase`, `MonadControl`, `MonadBaseControl` instances.+* `MonadBase`, `MonadTransControl`, `MonadBaseControl` instances. * `MFunctor`, `MMonad` instances. * Use `transformers-lift`.
ether.cabal view
@@ -1,5 +1,5 @@ name: ether-version: 0.3.1.0+version: 0.3.1.1 synopsis: Monad transformers and classes description: Ether is a Haskell library that extends @mtl@ and @transformers@ with
src/Control/Monad/Ether/State/Class.hs view
@@ -18,10 +18,6 @@ , gets ) where -#if __GLASGOW_HASKELL__ < 710-import Data.Monoid-#endif- import Control.Monad.Trans (MonadTrans(..)) import qualified Control.Monad.Trans.Ether.State.Lazy as S.L
test/Regression.hs view
@@ -215,4 +215,4 @@ wrapStateBad2Core = evalState foo (ensureUniqueTags $ ethered foo wrapStateBad2) wrapReaderCore :: Int -> Int-wrapReaderCore = runReader foo (ethered foo ((+) <$> T.ask <*> ask foo))+wrapReaderCore = runReader foo (ethered foo (liftM2 (+) T.ask (ask foo)))