packages feed

tagged 0.7.1 → 0.7.2

raw patch · 3 files changed

+7/−1 lines, 3 files

Files

CHANGELOG.markdown view
@@ -1,3 +1,7 @@+0.7.2+-----+* Fixed warning on GHC 7.8+ 0.7.1 ----- * Added `tagWith`.
src/Data/Tagged.hs view
@@ -45,7 +45,9 @@ #endif import Data.Ix (Ix(..)) import Data.Monoid+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ < 707 import Data.Proxy+#endif  -- | A @'Tagged' s b@ value is a value @b@ with an attached phantom type @s@. -- This can be used in place of the more traditional but less safe idiom of
tagged.cabal view
@@ -1,5 +1,5 @@ name:           tagged-version:        0.7.1+version:        0.7.2 license:        BSD3 license-file:   LICENSE author:         Edward A. Kmett