packages feed

binary 0.7.6.0 → 0.7.6.1

raw patch · 5 files changed

+13/−5 lines, 5 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

binary.cabal view
@@ -1,5 +1,5 @@ name:            binary-version:         0.7.6.0+version:         0.7.6.1 license:         BSD3 license-file:    LICENSE author:          Lennart Kolmodin <kolmodin@gmail.com>@@ -18,7 +18,7 @@ stability:       provisional build-type:      Simple cabal-version:   >= 1.8-tested-with:     GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.2, GHC == 7.10.1+tested-with:     GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.1 extra-source-files:   README.md changelog.md docs/hcar/binary-Lb.tex tools/derive/*.hs 
changelog.md view
@@ -1,6 +1,11 @@ binary ====== +binary-0.7.6.1+--------------++- Fix compilation for GHC == 7.2.*.+ binary-0.7.6.0 -------------- 
src/Data/Binary/Class.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE CPP, FlexibleContexts #-}-#if __GLASGOW_HASKELL__ >= 701+#if __GLASGOW_HASKELL__ >= 701 && __GLASGOW_HASKELL__ != 702 {-# LANGUAGE Safe #-} #endif #ifdef GENERICS
src/Data/Binary/Generic.hs view
@@ -1,5 +1,8 @@ {-# LANGUAGE BangPatterns, CPP, FlexibleInstances, KindSignatures,-    ScopedTypeVariables, Safe, TypeOperators, TypeSynonymInstances #-}+    ScopedTypeVariables, TypeOperators, TypeSynonymInstances #-}+#if __GLASGOW_HASKELL__ >= 701 && __GLASGOW_HASKELL__ != 702+{-# LANGUAGE Safe #-}+#endif {-# OPTIONS_GHC -fno-warn-orphans #-}  -----------------------------------------------------------------------------
src/Data/Binary/Put.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE CPP #-}-#if __GLASGOW_HASKELL__ >= 701+#if __GLASGOW_HASKELL__ >= 701 && __GLASGOW_HASKELL__ != 702 {-# LANGUAGE Safe #-} #endif