colourista 0.1.0.1 → 0.1.0.2
raw patch · 6 files changed
+20/−11 lines, 6 filesdep −ghc-primdep ~ansi-terminaldep ~basedep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependencies removed: ghc-prim
Dependency ranges changed: ansi-terminal, base, bytestring, hspec, text
API changes (from Hackage documentation)
Files
- CHANGELOG.md +8/−0
- colourista.cabal +8/−7
- src/Colourista.hs +1/−1
- src/Colourista/IO.hs +1/−1
- src/Colourista/Pure.hs +1/−1
- src/Colourista/Short.hs +1/−1
CHANGELOG.md view
@@ -3,6 +3,14 @@ `colourista` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 0.1.0.2 – Oct 5, 2022++* [#95](https://github.com/kowainik/colourista/issues/95):+ Support GHC-9.2.+* Support GHC-9.4.+* Upgrade `text` to version `2.0`.+* Upgrade `hspec` version.+ ## 🐰🥚 0.1.0.1 — Apr 5, 2021 * [#55](https://github.com/kowainik/colourista/issues/55):
colourista.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: colourista-version: 0.1.0.1+version: 0.1.0.2 synopsis: Convenient interface for printing colourful messages description: Convenient interface for printing colourful messages based on the @ansi-terminal@ library. homepage: https://github.com/kowainik/colourista@@ -9,7 +9,7 @@ license-file: LICENSE author: Veronika Romashkina, Dmitrii Kovanikov maintainer: Kowainik <xrom.xkov@gmail.com>-copyright: 2020-2021 Kowainik+copyright: 2020-2022 Kowainik category: Terminal, ANSI build-type: Simple extra-doc-files: README.md@@ -19,14 +19,16 @@ GHC == 8.6.5 GHC == 8.8.4 GHC == 8.10.4- GHC == 9.0.1+ GHC == 9.0.2+ GHC == 9.2.4+ GHC == 9.4.2 source-repository head type: git location: https://github.com/kowainik/colourista.git common common-options- build-depends: base >= 4.10.1.0 && < 4.16+ build-depends: base >= 4.10.1.0 && < 4.18 ghc-options: -Wall -Wcompat@@ -73,8 +75,7 @@ build-depends: ansi-terminal >= 0.10 && < 0.12 , bytestring >= 0.10 && < 0.12- , ghc-prim >= 0.5 && < 0.8- , text ^>= 1.2.3.0+ , text >= 1.2.3.0 && < 2.1 test-suite colourista-test import: common-options@@ -85,7 +86,7 @@ build-depends: colourista , bytestring- , hspec ^>= 2.7.1+ , hspec >= 2.7.1 && < 2.11 , text ghc-options: -threaded
src/Colourista.hs view
@@ -1,5 +1,5 @@ {- |-Copyright: (c) 2020-2021 Kowainik+Copyright: (c) 2020-2022 Kowainik SPDX-License-Identifier: MPL-2.0 Maintainer: Kowainik <xrom.xkov@gmail.com>
src/Colourista/IO.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE CPP #-} {- |-Copyright: (c) 2020-2021 Kowainik+Copyright: (c) 2020-2022 Kowainik SPDX-License-Identifier: MPL-2.0 Maintainer: Kowainik <xrom.xkov@gmail.com>
src/Colourista/Pure.hs view
@@ -1,5 +1,5 @@ {- |-Copyright: (c) 2020-2021 Kowainik+Copyright: (c) 2020-2022 Kowainik SPDX-License-Identifier: MPL-2.0 Maintainer: Kowainik <xrom.xkov@gmail.com>
src/Colourista/Short.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE CPP #-} {- |-Copyright: (c) 2020-2021 Kowainik+Copyright: (c) 2020-2022 Kowainik SPDX-License-Identifier: MPL-2.0 Maintainer: Kowainik <xrom.xkov@gmail.com>