packages feed

transformers 0.5.6.1 → 0.5.6.2

raw patch · 3 files changed

+5/−2 lines, 3 filesdep ~base

Dependency ranges changed: base

Files

Control/Monad/Trans/List.hs view
@@ -146,7 +146,7 @@ instance (MonadFix m) => MonadFix (ListT m) where     mfix f = ListT $ mfix (runListT . f . head) >>= \ xs -> case xs of         [] -> return []-        x:_ -> liftM (x:) (runListT (mfix (mapListT (fmap tail) . f)))+        x:_ -> liftM (x:) (runListT (mfix (mapListT (liftM tail) . f)))     {-# INLINE mfix #-}  instance MonadTrans ListT where
changelog view
@@ -1,5 +1,8 @@ -*-change-log-*- +0.5.6.2 Ross Paterson <R.Paterson@city.ac.uk> Feb 2019+	* Further backward compatability fix+ 0.5.6.1 Ross Paterson <R.Paterson@city.ac.uk> Feb 2019 	* Backward compatability fix for MonadFix ListT instance 
transformers.cabal view
@@ -1,5 +1,5 @@ name:         transformers-version:      0.5.6.1+version:      0.5.6.2 license:      BSD3 license-file: LICENSE author:       Andy Gill, Ross Paterson