tagged-transformer 0.6 → 0.6.1
raw patch · 4 files changed
+9/−11 lines, 4 filesdep ~exceptions
Dependency ranges changed: exceptions
Files
- CHANGELOG.markdown +4/−0
- LICENSE +1/−5
- src/Data/Functor/Trans/Tagged.hs +1/−3
- tagged-transformer.cabal +3/−3
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+0.6.1+---+* Update dependencies+ 0.6 --- * Removed `self`/`selfM`. Use `pure` and `return`.
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2009-2011 Edward Kmett+Copyright (c) 2009-2013 Edward Kmett All rights reserved. Redistribution and use in source and binary forms, with or without@@ -12,10 +12,6 @@ copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.-- * Neither the name of Edward Kmett nor the names of other- contributors may be used to endorse or promote products derived- from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
src/Data/Functor/Trans/Tagged.hs view
@@ -10,7 +10,7 @@ ---------------------------------------------------------------------------- -- | -- Module : Data.Functor.Trans.Tagged--- Copyright : 2011 Edward Kmett+-- Copyright : 2011-2013 Edward Kmett -- License : BSD3 -- -- Maintainer : Edward Kmett <ekmett@gmail.com>@@ -128,7 +128,6 @@ mplus (TagT a) (TagT b) = TagT (mplus a b) {-# INLINE mplus #-} - instance MonadFix m => MonadFix (TaggedT s m) where mfix f = TagT $ mfix (untagT . f) {-# INLINE mfix #-}@@ -216,7 +215,6 @@ instance ComonadTrans (TaggedT s) where lower (TagT w) = w {-# INLINE lower #-}- instance ComonadHoist (TaggedT s) where cohoist f = TagT . f . untagT
tagged-transformer.cabal view
@@ -1,5 +1,5 @@ name: tagged-transformer-version: 0.6+version: 0.6.1 license: BSD3 license-file: LICENSE author: Edward A. Kmett@@ -8,7 +8,7 @@ category: Data, Phantom Types synopsis: Provides newtype wrappers for phantom types to avoid unsafely passing dummy arguments homepage: http://github.com/ekmett/tagged-transformer-copyright: 2011 Edward A. Kmett+copyright: 2011-2013 Edward A. Kmett description: Provides newtype wrappers for phantom types to avoid unsafely passing dummy arguments build-type: Simple cabal-version: >=1.6@@ -31,7 +31,7 @@ comonad >= 4 && < 5, contravariant >= 0.3 && < 1, distributive >= 0.3 && < 1,- exceptions >= 0.1.1 && < 1,+ exceptions >= 0.2 && < 1, mtl >= 2.0.1 && < 2.2, reflection >= 1.1.6 && < 2, semigroupoids >= 4 && < 5,