packages feed

comonad-transformers 3.0.2 → 3.0.3

raw patch · 8 files changed

+37/−3 lines, 8 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

.gitignore view
@@ -1,2 +1,13 @@-_darcs dist+docs+wiki+TAGS+tags+wip+.DS_Store+.*.swp+.*.swo+*.o+*.hi+*~+*#
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+3.0.3+-----+* Marked modules Trustworthy as needed.+ 3.0.1 ----- * Removed upper bounds on my other dependencies
comonad-transformers.cabal view
@@ -1,6 +1,6 @@ name:          comonad-transformers category:      Control, Comonads-version:       3.0.2+version:       3.0.3 license:       BSD3 cabal-version: >= 1.6 license-file:  LICENSE
src/Control/Comonad/Trans/Class.hs view
@@ -1,3 +1,7 @@+{-# LANGUAGE CPP #-}+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif ----------------------------------------------------------------------------- -- | -- Module      :  Control.Comonad.Trans.Class
src/Control/Comonad/Trans/Env.hs view
@@ -3,6 +3,9 @@ #if __GLASGOW_HASKELL__ >= 707 {-# LANGUAGE StandaloneDeriving, DeriveDataTypeable #-} #endif+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif ----------------------------------------------------------------------------- -- | -- Module      :  Control.Comonad.Trans.Env
src/Control/Comonad/Trans/Store.hs view
@@ -2,6 +2,9 @@ #if __GLASGOW_HASKELL__ >= 707 {-# LANGUAGE StandaloneDeriving, DeriveDataTypeable #-} #endif+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif ----------------------------------------------------------------------------- -- | -- Module      :  Control.Comonad.Trans.Store@@ -26,8 +29,10 @@ -- -- Add something to the focus: ----- > addToFocus :: Int -> Store (Int, Int) Int+-- > addToFocus :: Int -> Store (Int, Int) Int -> Int -- > addToFocus x wa = x + extract wa+-- >+-- > added3 :: Store (Int, Int) Int -- > added3 = extend (addToFocus 3) storeTuple -- -- The focus of added3 is now @1 + 3 = 4@. However, this action changed only
src/Control/Comonad/Trans/Traced.hs view
@@ -2,6 +2,9 @@ #if __GLASGOW_HASKELL__ >= 707 {-# LANGUAGE StandaloneDeriving, DeriveDataTypeable #-} #endif+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif ----------------------------------------------------------------------------- -- | -- Module      :  Control.Comonad.Trans.Traced
src/Data/Functor/Coproduct.hs view
@@ -1,3 +1,7 @@+{-# LANGUAGE CPP #-}+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702+{-# LANGUAGE Trustworthy #-}+#endif ----------------------------------------------------------------------------- -- | -- Module      :  Data.Functor.Coproduct