Skip to content

Commit f3a524c

Browse files
committed
Finalise for text-1.2.3.1 release
1 parent bc54cce commit f3a524c

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
### 1.2.3.1 TBD
1+
### 1.2.3.1
22

33
* Make `decodeUtf8With` fail explicitly for unsupported non-BMP
44
replacement characters instead silent undefined behaviour (gh-213)
55

66
* Fix termination condition for file reads via `Data.Text.IO`
77
operations (gh-223)
88

9+
* A serious correctness issue affecting uses of `take` and `drop` with
10+
negative counts has been fixed (gh-227)
11+
12+
* A bug in the case-mapping functions resulting in unreasonably large
13+
allocations with large arguments has been fixed (gh-221)
14+
915
### 1.2.3.0
1016

1117
* Spec compliance: `toCaseFold` now follows the Unicode 9.0 spec

text.cabal

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
cabal-version: >= 1.8
12
name: text
2-
version: 1.2.3.0
3+
version: 1.2.3.1
4+
35
homepage: https://github.com/haskell/text
46
bug-reports: https://github.com/haskell/text/issues
57
synopsis: An efficient packed Unicode text type.
@@ -37,11 +39,10 @@ description:
3739
license: BSD2
3840
license-file: LICENSE
3941
author: Bryan O'Sullivan <[email protected]>
40-
maintainer: Bryan O'Sullivan <[email protected]>
42+
maintainer: Bryan O'Sullivan <[email protected]>, Herbert Valerio Riedel <[email protected]>
4143
copyright: 2009-2011 Bryan O'Sullivan, 2008-2009 Tom Harper
4244
category: Data, Text
4345
build-type: Simple
44-
cabal-version: >= 1.8
4546
tested-with: GHC==8.6.1, GHC==8.4.3,
4647
GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4,
4748
GHC==7.6.3, GHC==7.4.2, GHC==7.2.2, GHC==7.0.4
@@ -152,7 +153,7 @@ library
152153
build-depends: bytestring >= 0.9 && < 0.10.4,
153154
bytestring-builder >= 0.10.4
154155
else
155-
build-depends: bytestring >= 0.10.4
156+
build-depends: bytestring >= 0.10.4 && < 0.11
156157

157158
cpp-options: -DHAVE_DEEPSEQ
158159
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -O2
@@ -166,7 +167,7 @@ library
166167
build-depends: integer-simple >= 0.1 && < 0.5
167168
else
168169
cpp-options: -DINTEGER_GMP
169-
build-depends: integer-gmp >= 0.2
170+
build-depends: integer-gmp >= 0.2 && < 1.1
170171

171172
test-suite tests
172173
type: exitcode-stdio-1.0

0 commit comments

Comments
 (0)