packages feed

psqueues 0.2.1.0 → 0.2.2.0

raw patch · 5 files changed

+8/−1 lines, 5 filesdep ~base

Dependency ranges changed: base

Files

CHANGELOG view
@@ -1,3 +1,6 @@+- 0.2.2.0+    * Fix import of Traversable on GHC 7.8+ - 0.2.1.0     * Add Traversable instances 
psqueues.cabal view
@@ -1,5 +1,5 @@ Name:          psqueues-Version:       0.2.1.0+Version:       0.2.2.0 License:       BSD3 License-file:  LICENSE Maintainer:    Jasper Van der Jeugt <jaspervdj@gmail.com>
src/Data/HashPSQ/Internal.hs view
@@ -59,6 +59,7 @@ import qualified Data.List            as List import           Data.Maybe           (isJust) import           Prelude              hiding (foldr, lookup, map, null)+import           Data.Traversable  import qualified Data.IntPSQ.Internal as IntPSQ import qualified Data.OrdPSQ          as OrdPSQ
src/Data/IntPSQ/Internal.hs view
@@ -76,6 +76,8 @@ import           Prelude             hiding (filter, foldl, foldr, lookup, map,                                       null) +import           Data.Traversable+ -- TODO (SM): get rid of bang patterns  {-
src/Data/OrdPSQ/Internal.hs view
@@ -72,6 +72,7 @@ import qualified Data.List       as List import           Data.Maybe      (isJust) import           Prelude         hiding (foldr, lookup, map, null)+import           Data.Traversable  -------------------------------------------------------------------------------- -- Types