heap 0.2.1 → 0.2.2
raw patch · 2 files changed
+2/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/Heap.hs +0/−2
- heap.cabal +2/−1
Data/Heap.hs view
@@ -81,7 +81,6 @@ foldMap f (Tree _ x l r) = foldMap f l `mappend` f x `mappend` foldMap f r instance (HeapPolicy p a, Read a) => Read (Heap p a) where-#ifndef __HADDOCK__ #ifdef __GLASGOW_HASKELL__ readPrec = parens $ prec 10 $ do Ident "fromList" <- lexP@@ -93,7 +92,6 @@ ("fromList", s) <- lex r (xs, t) <- reads s return (fromList xs, t)-#endif #endif -- |
heap.cabal view
@@ -1,5 +1,5 @@ Name: heap-Version: 0.2.1+Version: 0.2.2 Stability: beta Category: Data Synopsis: Heaps in Haskell@@ -16,3 +16,4 @@ Build-Depends: base Exposed-Modules: Data.Heap ghc-options: -O2 -Wall+ Extensions: CPP