Skip to content

Commit 73e58f1

Browse files
authored
Prepare release 0.1.0.1 (#58)
1 parent 1a52063 commit 73e58f1

File tree

7 files changed

+8
-9
lines changed

7 files changed

+8
-9
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
`colourista` uses [PVP Versioning][1].
44
The changelog is available [on GitHub][2].
55

6-
## Unreleased
6+
## 🐰🥚 0.1.0.1 — Apr 5, 2021
77

88
* [#55](https://github.com/kowainik/colourista/issues/55):
99
Support GHC-9.0.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ In order to start using `colourista` in your project, you will need to set it up
4545
library. After the adjustment, this section could look like this:
4646

4747
```haskell
48-
build-depends: base ^>= 4.14
49-
, colourista ^>= 0.1
48+
build-depends: colourista ^>= LATEST_VERSION
5049
, ...
5150
```
5251
2. In the module where you wish to use the colourful output with `colourista`,

colourista.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: colourista
3-
version: 0.1.0.0
3+
version: 0.1.0.1
44
synopsis: Convenient interface for printing colourful messages
55
description: Convenient interface for printing colourful messages based on the @ansi-terminal@ library.
66
homepage: https://github.com/kowainik/colourista
@@ -9,7 +9,7 @@ license: MPL-2.0
99
license-file: LICENSE
1010
author: Veronika Romashkina, Dmitrii Kovanikov
1111
maintainer: Kowainik <[email protected]>
12-
copyright: 2020 Kowainik
12+
copyright: 2020-2021 Kowainik
1313
category: Terminal, ANSI
1414
build-type: Simple
1515
extra-doc-files: README.md

src/Colourista.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{- |
2-
Copyright: (c) 2020 Kowainik
2+
Copyright: (c) 2020-2021 Kowainik
33
SPDX-License-Identifier: MPL-2.0
44
Maintainer: Kowainik <[email protected]>
55

src/Colourista/IO.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{-# LANGUAGE CPP #-}
22

33
{- |
4-
Copyright: (c) 2020 Kowainik
4+
Copyright: (c) 2020-2021 Kowainik
55
SPDX-License-Identifier: MPL-2.0
66
Maintainer: Kowainik <[email protected]>
77

src/Colourista/Pure.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{- |
2-
Copyright: (c) 2020 Kowainik
2+
Copyright: (c) 2020-2021 Kowainik
33
SPDX-License-Identifier: MPL-2.0
44
Maintainer: Kowainik <[email protected]>
55

src/Colourista/Short.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{-# LANGUAGE CPP #-}
22

33
{- |
4-
Copyright: (c) 2020 Kowainik
4+
Copyright: (c) 2020-2021 Kowainik
55
SPDX-License-Identifier: MPL-2.0
66
Maintainer: Kowainik <[email protected]>
77

0 commit comments

Comments
 (0)