Changelog History
Page 3
-
v1.2.0.1 Changes
- ๐ Fixed a buffer overflow in rendering of large Integers (https://github.com/bos/text/issues/99)
-
v1.2.0.0 Changes
๐ Fixed an integer overflow in the replace function (https://github.com/bos/text/issues/81)
๐ Fixed a hang in lazy decodeUtf8With (https://github.com/bos/text/issues/87)
โฌ๏ธ Reduced codegen bloat caused by use of empty and single-character literals
โ Added an instance of IsList for GHC 7.8 and above
-
v1.1.1.0 Changes
The Data.Data instance now allows gunfold to work, via a virtual pack constructor
โฌ๏ธ dropEnd, takeEnd: new functions
Comparing the length of a Text against a number can now short-circuit in more cases
-
v1.1.0.1 Changes
- ๐ streamDecodeUtf8: fixed gh-70, did not return all unconsumed bytes in single-byte chunks
-
v1.1.0.0 Changes
๐ encodeUtf8: Performance is improved by up to 4x.
encodeUtf8Builder, encodeUtf8BuilderEscaped: new functions, available only if bytestring >= 0.10.4.0 is installed, that allow very fast and flexible encoding of a Text value to a bytestring Builder.
As an example of the performance gain to be had, the encodeUtf8BuilderEscaped function helps to double the speed of JSON encoding in the latest version of aeson! (Note: if all you need is a plain ByteString, encodeUtf8 is still the faster way to go.)
- All of the internal module hierarchy is now publicly exposed. If a module is in the .Internal hierarchy, or is documented as internal, use at your own risk - there are no API stability guarantees for internal modules!
-
v1.0.0.1 Changes
- ๐ decodeUtf8: Fixed a regression that caused us to incorrectly identify truncated UTF-8 as valid (gh-61)
-
v1.0.0.0 Changes
โ Added support for Unicode 6.3.0 to case conversion functions
๐ New function toTitle converts words in a string to title case
๐ New functions peekCStringLen and withCStringLen simplify interoperability with C functionns
โ Added support for decoding UTF-8 in stream-friendly fashion
๐ Fixed a bug in mapAccumL
โ Added trusted Haskell support
โ Removed support for GHC 6.10 (released in 2008) and older