diff --git a/Changelog.md b/Changelog.md index 95163715c..baf2954fc 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,32 @@ +[0.11.4.0] — January 2023 + +* Bug fixes: + * [Prevent commoning-up of `ShortByteString` literals produced by `TemplateHaskell`](https://github.com/haskell/bytestring/pull/542) + * [Make `Builder` literals demand a sane amount of memory at chunk boundaries](https://github.com/haskell/bytestring/pull/538) +* API additions and behavior changes: + * [Export `unsafeIndex` for `ShortByteString` which had been accidentally removed in v0.11.3.0](https://github.com/haskell/bytestring/pull/532) + * [Make `Data.ByteString.Lazy.Char8.lines` less strict](https://github.com/haskell/bytestring/pull/562) + * [Add `NonEmpty` variants of `inits` and `tails`](https://github.com/haskell/bytestring/pull/557) +* Performance improvements: + * [Speed up `unpack` and folds for `ShortByteString`](https://github.com/haskell/bytestring/pull/526) + * [Speed up `Builder`s for non-host endianness](https://github.com/haskell/bytestring/pull/531) + * [Work around upstream `keepAlive#` performance regressions](https://github.com/haskell/bytestring/pull/536) + * [Improve performance of `uncons` for `LazyByteString`](https://github.com/haskell/bytestring/pull/559) + * [Simplify `useAsCString`](https://github.com/haskell/bytestring/pull/516) + * [Remove redundant comparisons in `Data.ByteString.Short.splitAt`](https://github.com/haskell/bytestring/pull/528) +* Miscellaneous: + * [Document possible interleaving of `hPutStrLn` and friends](https://github.com/haskell/bytestring/pull/518) + * [Documentation tweaks](https://github.com/haskell/bytestring/pull/523) + * [Add lower bound for `tasty-quickcheck`](https://github.com/haskell/bytestring/pull/520) + + +[0.11.4.0]: https://github.com/haskell/bytestring/compare/0.11.3.1...0.11.4.0 + [0.11.3.1] — May 2022 * [Windows: Do not link against `gcc_s`](https://github.com/haskell/bytestring/pull/500) @@ -8,6 +37,8 @@ [0.11.3.0] — February 2022 +Erratum: `unsafeIndex` was accidentally removed from the export list of `Data.ByteString.Short.Internal` in this release. This was corrected in 0.11.4.0. + * [Enhance `ShortByteString` API](https://github.com/haskell/bytestring/pull/471) - Add `all`, `any`, `append`, `break`, `breakEnd`, `breakSubstring`, `concat`, `cons`, `count`, `drop`, `dropEnd`, `dropWhile`, `dropWhileEnd`, `elem`, `elemIndex`, `elemIndices`, `filter`, `find`, `findIndex`, `findIndices`, `foldl'`, `foldl`, `foldl1'`, `foldl1`, `foldr'`, `foldr`, `foldr1'`, `foldr1`, `head`, `init`, `intercalate`, `isInfixOf`, `isPrefixOf`, `isSuffixOf`, `last`, `map`, `partition`, `replicate`, `reverse`, `singleton`, `snoc`, `span`, `spanEnd`, `split`, `splitAt`, `splitWith`, `stripPrefix`, `stripSuffix`, `tail`, `take`, `takeEnd`, `takeWhile`, `takeWhileEnd`, `uncons`, `unfoldr`, `unfoldrN`, `unsnoc` to `Data.ByteString.Short`. * [Add `Data.ByteString.Short.isValidUtf8`](https://github.com/haskell/bytestring/pull/450)