packages feed

bytestring-tree-builder 0.2.5 → 0.2.6

raw patch · 2 files changed

+8/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

bytestring-tree-builder.cabal view
@@ -1,7 +1,7 @@ name:   bytestring-tree-builder version:-  0.2.5+  0.2.6 category:   ByteString synopsis:
library/ByteString/TreeBuilder.hs view
@@ -45,8 +45,14 @@   {-# INLINABLE mappend #-}   mappend (Builder length1 tree1) (Builder length2 tree2) =     Builder (length1 + length2) (A.Branch tree1 tree2)+  {-# INLINE mconcat #-}+  mconcat =+    foldl' mappend mempty -instance Semigroup Builder+instance Semigroup Builder where+  {-# INLINE sconcat #-}+  sconcat =+    foldl' mappend mempty  instance IsString Builder where   {-# INLINE fromString #-}