semigroupoids 5.0.0.1 → 5.0.0.2
raw patch · 3 files changed
+7/−1 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.markdown +4/−0
- semigroupoids.cabal +1/−1
- src/Data/Semigroupoid.hs +2/−0
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+5.0.0.2+-------+* Bugfix for GHC 7.4. PolyKinds on 7.4 cause all sorts of haskell interface file errors. One of the #if guards that turned it off on 7.4 was missing and has been fixed.+ 5.0.0.1 ------- * Added the CHANGELOG to the distribution so that `hackage` can link to it in the haddocks.
semigroupoids.cabal view
@@ -1,6 +1,6 @@ name: semigroupoids category: Control, Comonads-version: 5.0.0.1+version: 5.0.0.2 license: BSD3 cabal-version: >= 1.8 license-file: LICENSE
src/Data/Semigroupoid.hs view
@@ -1,5 +1,7 @@ {-# LANGUAGE CPP #-}+#if __GLASGOW_HASKELL__ >= 706 {-# LANGUAGE PolyKinds #-}+#endif {-# LANGUAGE Safe #-} ----------------------------------------------------------------------------- -- |