Skip to content

Commit 0602eab

Browse files
sjakobiclyring
andauthored
Update changelog for v0.11.4.0 (#534)
* Update changelog for v0.11.4.0 Co-authored-by: Matthew Craven <[email protected]> * Organize changelog entries for 0.11.4.0 * Re-phrase changelog entry for #538 Co-authored-by: Matthew Craven <[email protected]>
1 parent 63fcb60 commit 0602eab

File tree

1 file changed

+32
-3
lines changed

1 file changed

+32
-3
lines changed

Changelog.md

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,39 @@
33
* [New sized and/or unsigned variants of `readInt` and `readInteger`](https://github.com/haskell/bytestring/pull/438)
44
* [`readInt` returns `Nothing`, if the sequence of digits cannot be represented by an `Int`, instead of overflowing silently](https://github.com/haskell/bytestring/pull/309)
55
* [Remove `zipWith` rewrite rule](https://github.com/haskell/bytestring/pull/387)
6-
* [Export `unsafeIndex` for ShortByteString which had been accidentally removed in v0.11.3.0](https://github.com/haskell/bytestring/pull/532)
76
* [`ShortByteString` is now a wrapper over boxed `Data.Array.Byte.ByteArray` instead of unboxed `ByteArray#` directly](https://github.com/haskell/bytestring/pull/410)
87
* [`fromListN` from `instance IsList ShortByteString` throws an exception if the first argument does not match the length of the second instead of silent ignore](https://github.com/haskell/bytestring/pull/410)
98

10-
11-
[0.12.0.0]: https://github.com/haskell/bytestring/compare/0.11.3.0...0.12.0.0
9+
[0.12.0.0]: https://github.com/haskell/bytestring/compare/0.11.4.0...0.12.0.0
10+
11+
[0.11.4.0] — January 2023
12+
13+
* Bug fixes:
14+
* [Prevent commoning-up of `ShortByteString` literals produced by `TemplateHaskell`](https://github.com/haskell/bytestring/pull/542)
15+
* [Make `Builder` literals demand a sane amount of memory at chunk boundaries](https://github.com/haskell/bytestring/pull/538)
16+
* API additions and behavior changes:
17+
* [Export `unsafeIndex` for `ShortByteString` which had been accidentally removed in v0.11.3.0](https://github.com/haskell/bytestring/pull/532)
18+
* [Make `Data.ByteString.Lazy.Char8.lines` less strict](https://github.com/haskell/bytestring/pull/562)
19+
* [Add `NonEmpty` variants of `inits` and `tails`](https://github.com/haskell/bytestring/pull/557)
20+
* Performance improvements:
21+
* [Speed up `unpack` and folds for `ShortByteString`](https://github.com/haskell/bytestring/pull/526)
22+
* [Speed up `Builder`s for non-host endianness](https://github.com/haskell/bytestring/pull/531)
23+
* [Work around upstream `keepAlive#` performance regressions](https://github.com/haskell/bytestring/pull/536)
24+
* [Improve performance of `uncons` for `LazyByteString`](https://github.com/haskell/bytestring/pull/559)
25+
* [Simplify `useAsCString`](https://github.com/haskell/bytestring/pull/516)
26+
* [Remove redundant comparisons in `Data.ByteString.Short.splitAt`](https://github.com/haskell/bytestring/pull/528)
27+
* Miscellaneous:
28+
* [Document possible interleaving of `hPutStrLn` and friends](https://github.com/haskell/bytestring/pull/518)
29+
* [Documentation tweaks](https://github.com/haskell/bytestring/pull/523)
30+
* [Add lower bound for `tasty-quickcheck`](https://github.com/haskell/bytestring/pull/520)
31+
<!--
32+
* Internal stuff:
33+
* Various CI tweaks ([1](https://github.com/haskell/bytestring/pull/539), [2](https://github.com/haskell/bytestring/pull/550), [3](https://github.com/haskell/bytestring/pull/551), [4](https://github.com/haskell/bytestring/pull/563), [5](https://github.com/haskell/bytestring/pull/566), [6](https://github.com/haskell/bytestring/pull/568))
34+
* [Avoid pattern-matching with `SBS`, for consistency with master](https://github.com/haskell/bytestring/pull/556)
35+
* [Avoid `Prelude.head` and `Prelude.tail`](https://github.com/haskell/bytestring/pull/553)
36+
-->
37+
38+
[0.11.4.0]: https://github.com/haskell/bytestring/compare/0.11.3.1...0.11.4.0
1239

1340
[0.11.3.1] — May 2022
1441

@@ -20,6 +47,8 @@
2047

2148
[0.11.3.0] — February 2022
2249

50+
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.
51+
2352
* [Enhance `ShortByteString` API](https://github.com/haskell/bytestring/pull/471)
2453
- 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`.
2554
* [Add `Data.ByteString.Short.isValidUtf8`](https://github.com/haskell/bytestring/pull/450)

0 commit comments

Comments
 (0)