Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
### 2.1.3 - 2025-08-01

* [Fix CRLF handling in IO functions](https://github.com/haskell/text/pull/649)

* [Change `utf8LengthByLeader` to a branching implementation](https://github.com/haskell/text/pull/635)

* [Define `stimes 0` for lazy text](https://github.com/haskell/text/pull/641)

* [Add implementation of `sconcat` and `stimes` for strict `Text`](https://github.com/haskell/text/pull/580) and [Fix `stimes` for strict text when size wraps around `Int`](https://github.com/haskell/text/pull/639)

* [Allow list fusion for `unpack` over both strict and lazy `Text`](https://github.com/haskell/text/pull/629)

### 2.1.2

* [Update case mappings for Unicode 16.0](https://github.com/haskell/text/pull/618)
Expand Down
2 changes: 1 addition & 1 deletion text.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: text
version: 2.1.2
version: 2.1.3

homepage: https://github.com/haskell/text
bug-reports: https://github.com/haskell/text/issues
Expand Down
Loading