This project is mirrored from https://github.com/haskell/text.
Pull mirroring updated .
- 20 Oct, 2021 1 commit
-
-
Joachim Breitner authored
-
- 20 Mar, 2021 1 commit
-
-
Ryan Scott authored
See ghc/ghc#19083.
-
- 13 Mar, 2021 6 commits
- 09 Mar, 2021 1 commit
-
-
Bodigrim authored
-
- 17 Feb, 2021 3 commits
-
-
Oleg Grenrus authored
-
Oleg Grenrus authored
Use new primops names for converting numbers to and from the native size
-
John Ericson authored
-
- 15 Feb, 2021 1 commit
-
-
Oleg Grenrus authored
Use base-provided unsafe shifts
-
- 04 Feb, 2021 1 commit
-
-
John Ericson authored
This makes the 9.2 prim changes less invasive. If we don't care about de-optimizing ancient GHCs we can remove this module altogether.
-
- 24 Dec, 2020 1 commit
-
-
John Ericson authored
-
- 12 Dec, 2020 1 commit
-
-
John Ericson authored
-
- 06 Dec, 2020 3 commits
-
-
Oleg Grenrus authored
Add examples to 'span' and 'break'
-
-
Oleg Grenrus authored
Run doctest on CI
-
- 05 Dec, 2020 1 commit
-
-
Oleg Grenrus authored
-
- 03 Dec, 2020 1 commit
-
-
Sylvain Henry authored
-
- 12 Nov, 2020 1 commit
-
-
Moritz Angermann authored
-
- 17 Oct, 2020 5 commits
-
-
Oleg Grenrus authored
-
Oleg Grenrus authored
bytestring-0.11
-
Oleg Grenrus authored
Add rewrite rule to unfuse (text . drop)
-
Falco Peijnenburg authored
The combination of (take . drop) should not be fused. This test makes sure they are not by comparing the underlying array before and after applying those functions. See #301.
-
Falco Peijnenburg authored
The combination of take . drop is commonly used as a substring operation. The original take and drop functions both work by calculating just a new offset and length. When fused, the streaming implementation unnecessarily copies the data. This makes it much slower and more memory consuming.
-
- 19 Sep, 2020 1 commit
-
-
Oleg Grenrus authored
-
- 20 Jul, 2020 1 commit
-
-
Oleg Grenrus authored
Migrating scripts to Python 3.
-
- 17 Jul, 2020 2 commits
-
-
Oleg Grenrus authored
Regenerate .travis.yml, bump version to 1.2.4.1
-
Oleg Grenrus authored
- move source to src/ - Use symbolic links for package replicas
-
- 16 Jul, 2020 2 commits
-
-
Oleg Grenrus authored
- There is no public API changes, only adopting to changes in dependencies - Use `else` in `text.cabal`
-
-
- 16 Jun, 2020 2 commits
-
-
This is needed for [GHC#18279](ghc/ghc#18279), which seeks to bump `ghc-prim`'s version number to 0.7.0.0 in order to accommodate `GHC.Tuple.Unit` being renamed to `GHC.Tuple.Solo`. Since `text` does not use `GHC.Tuple.Unit`, it is safe to simply bump `text`'s upper version bounds on `ghc-prim`.
-
-
- 27 May, 2020 1 commit
-
-
Javran Cheng authored
Python 2 is already sunset. This patch upgrades existing scripts to Python 3.
-
- 12 Apr, 2020 2 commits
-
-
Ben Gamari authored
GHC 8.8.3 bundles ghc-prim-0.5.3 GHC 8.10.1 bundles ghc-prim-0.6.1
-
GHC HEAD is planning to bump `template-haskell`'s major version number to 2.17 soon (see ghc/ghc#17645) to reflect the [Overloaded Quotations](https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0246-overloaded-bracket.rst) proposal being implemented. Before this can happen, `text`'s upper version bounds on `template-haskell` need to be bumped to allow `template-haskell-2.17`, as `text` is a boot library. I have tested this change against GHC HEAD, and all test cases pass. I cannot forsee any interaction between the changes in the Overloaded Quotations proposal and the `text` library, as the only significant changes involve the types of quoted TH expressions and combinators in the `Language.Haskell.TH.Lib` library (neither of which `text` use).
-
- 10 Nov, 2019 1 commit
-
-
`template-haskell-2.16.0.0` adds a `liftTyped` method to `Lift`, which is like `lift` but returning `Q (TExp t)` instead of `Q Exp`. `liftTyped` does not have a default implementation in terms of `lift`, so it must be implemented explicitly in the `Lift Text` instances that `text` defines. The implementations I chose are based off of the general approach taken by `Language.Haskell.TH.Syntax`, such as in this example: https://gitlab.haskell.org/ghc/ghc/blob/4898df1cc25132dc9e2599d4fa4e1bbc9423cda5/libraries/template-haskell/Language/Haskell/TH/Syntax.hs#L716
-
- 25 Oct, 2019 1 commit
-
-
For GHC `master`.
-