streams 0.5.1.1 → 0.5.1.2
raw patch · 2 files changed
+6/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/Stream/Infinite/Skew.hs +1/−1
- streams.cabal +5/−1
Data/Stream/Infinite/Skew.hs view
@@ -61,7 +61,7 @@ data Complete a = Tip a- | Bin {-# UNPACK #-} !Integer a !(Complete a) !(Complete a)+ | Bin !Integer a !(Complete a) !(Complete a) deriving Show instance Functor Complete where
streams.cabal view
@@ -1,6 +1,6 @@ name: streams category: Control, Comonads-version: 0.5.1.1+version: 0.5.1.2 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE@@ -63,6 +63,10 @@ . * "Data.Stream.Supply" provides a comonadic supply of unique values, which are generated impurely as the tree is explored.+ .+ /Changes since 0.5.1/:+ .+ * Removed a redundant UNPACK pragma . /Changes since 0.5/: .