packages feed

text-ansi 0.3.0 → 0.3.0.1

raw patch · 7 files changed

+20/−16 lines, 7 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+## [0.3.0.1] - 2023-10-12++- Fix broken links to ECMA-48 standard+ ## [0.3.0] - 2023-09-24  - Switch the underlying text builder from `text-builder` to `text-builder-linear`. This also affects the API provided by@@ -10,7 +14,7 @@  ## [0.2.1.1] - 2023-05-11 -- [#6](https://github.com/mitchellwrosen/text-ansi/pull/6) Fix Windows linker errors on GHC 9.4.5++- [#6](https://github.com/awkward-squad/text-ansi/pull/6) Fix Windows linker errors on GHC 9.4.5+  ## [0.2.1] - 2022-11-05 
README.md view
@@ -1,4 +1,4 @@-[![GitHub CI](https://github.com/mitchellwrosen/text-ansi/workflows/CI/badge.svg)](https://github.com/mitchellwrosen/text-ansi/actions)+[![GitHub CI](https://github.com/awkward-squad/text-ansi/workflows/Haskell-CI/badge.svg)](https://github.com/awkward-squad/text-ansi/actions) [![Hackage](https://img.shields.io/hackage/v/text-ansi.svg)](https://hackage.haskell.org/package/text-ansi) [![Stackage LTS](https://stackage.org/package/text-ansi/badge/lts)](https://www.stackage.org/lts/package/text-ansi) [![Stackage Nightly](https://stackage.org/package/text-ansi/badge/nightly)](https://www.stackage.org/nightly/package/text-ansi)
src/String/ANSI.hs view
@@ -61,7 +61,7 @@ -- $intro -- -- Text styling for ANSI terminals using SGR codes, as defined by the--- <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>+-- <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48> -- standard. -- -- Supports foreground\/background color, bold\/faint intensity, italic,
src/Text/ANSI.hs view
@@ -61,7 +61,7 @@ -- $intro -- -- Text styling for ANSI terminals using SGR codes, as defined by the--- <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>+-- <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48> -- standard. -- -- Supports foreground\/background color, bold\/faint intensity, italic,
src/Text/Builder/ANSI.hs view
@@ -63,7 +63,7 @@ -- $intro -- -- Text styling for ANSI terminals using SGR codes, as defined by the--- <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>+-- <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48> -- standard. -- -- Supports foreground\/background color, bold\/faint intensity, italic,
src/Text/Lazy/Builder/ANSI.hs view
@@ -62,7 +62,7 @@ -- $intro -- -- Text styling for ANSI terminals using SGR codes, as defined by the--- <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>+-- <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48> -- standard. -- -- Supports foreground\/background color, bold\/faint intensity, italic,
text-ansi.cabal view
@@ -1,12 +1,12 @@ cabal-version: 2.2  name: text-ansi-version: 0.3.0+version: 0.3.0.1 category: Data synopsis: Text styling for ANSI terminals. description:   Text styling for ANSI terminals using SGR codes, as defined by the-  <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>+  <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48>   standard.   .   Supports foreground\/background color, bold\/faint intensity, italic,@@ -15,15 +15,15 @@   .   Also features terminal detection, so redirecting styled output to a file will   automatically strip the ANSI escape sequences.-author: Mitchell Rosen-maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>-homepage: https://github.com/mitchellwrosen/text-ansi-bug-reports: https://github.com/mitchellwrosen/text-ansi/issues-copyright: (c) 2018-2023, Mitchell Rosen+author: Mitchell Rosen, Travis Staton+maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>, Travis Staton <hello@travisstaton.com>+homepage: https://github.com/awkward-squad/text-ansi+bug-reports: https://github.com/awkward-squad/text-ansi/issues+copyright: (c) 2018-2023 Mitchell Rosen, Travis Staton license: BSD-3-Clause license-file: LICENSE build-type: Simple-tested-with: GHC == 9.2.8, GHC == 9.4.7, GHC == 9.6.2+tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1  extra-source-files:   CHANGELOG.md@@ -31,11 +31,11 @@  source-repository head   type: git-  location: git://github.com/mitchellwrosen/text-ansi.git+  location: git://github.com/awkward-squad/text-ansi.git  library   build-depends:-    base >= 4.16 && < 4.19,+    base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,     text >= 1.0 && < 2.2,     text-builder-linear ^>= 0.1.1,   default-language: