eq 4.0.1 → 4.0.2
raw patch · 3 files changed
+8/−1 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.markdown +4/−0
- eq.cabal +1/−1
- src/Data/Eq/Type.hs +3/−0
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+4.0.2+-----+* Made := kind polymorphic.+ 4.0.1 ----- * Provided an explicit nominal `RoleAnnotation`.
eq.cabal view
@@ -1,6 +1,6 @@ name: eq category: Type System-version: 4.0.1+version: 4.0.2 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE
src/Data/Eq/Type.hs view
@@ -2,6 +2,9 @@ #if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702 {-# LANGUAGE Trustworthy #-} #endif+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 706+{-# LANGUAGE PolyKinds #-}+#endif #if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 707 {-# LANGUAGE RoleAnnotations #-} #endif