Skip to content

Commit 26d2929

Browse files
committed
Rename from display to text-display and start the Changelog
1 parent 4439813 commit 26d2929

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# CHANGELOG
22

3-
## v0.0.1.0 –
4-
* Release
3+
## [Unreleased]
4+
5+
## [v0.0.1.0] – 20/10/2021
6+
* Initial release
7+
8+
[Unreleased]: https://github.com/kleidukos/text-display/compare/v0.0.1.0...HEAD
9+
[v0.0.1.0]: https://github.com/kleidukos/text-display/releases/tag/v0.0.1.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _A Typeclass for user-facing output_
44

55
## Description
66

7-
The `display` library offers a way for developers to print a textual representation of datatypes that does not
7+
The `text-display` library offers a way for developers to print a textual representation of datatypes that does not
88
have to abide by the rules of the [Show typeclass][Show].
99

1010
## Examples
@@ -74,5 +74,5 @@ function such as `decodeUtf8` or `decodeUtf8Strict` if you wish to turn a UTF8-e
7474
to Text.
7575
7676
[Show]: https://hackage.haskell.org/package/base/docs/Text-Show.html#v:Show
77-
[CI-badge]: https://img.shields.io/github/workflow/status/Kleidukos/display/CI?style=flat-square
78-
[CI-url]: https://github.com/Kleidukos/display/actions
77+
[CI-badge]: https://img.shields.io/github/workflow/status/Kleidukos/text-display/CI?style=flat-square
78+
[CI-url]: https://github.com/Kleidukos/text-display/actions

display.cabal renamed to text-display.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
cabal-version: 3.0
2-
name: display
2+
name: text-display
33
version: 0.0.1.0
44
category: Text
55
synopsis: A typeclass for user-facing output
66
description:
77
The 'Display' typeclass provides a solution for user-facing output that does not have to abide by the rules of the Show typeclass.
88

9-
homepage: https://github.com/Kleidukos/display#readme
10-
bug-reports: https://github.com/Kleidukos/display/issues
9+
homepage: https://github.com/Kleidukos/text-display#readme
10+
bug-reports: https://github.com/Kleidukos/text-display/issues
1111
author: Hécate Moonlight
1212
maintainer: Hécate Moonlight
1313
license: MIT
@@ -20,7 +20,7 @@ extra-source-files:
2020

2121
source-repository head
2222
type: git
23-
location: https://github.com/Kleidukos/display
23+
location: https://github.com/Kleidukos/text-display
2424

2525
common common-extensions
2626
default-language: Haskell2010
@@ -45,7 +45,7 @@ library
4545
, bytestring ^>=0.11
4646
, text ^>=1.2
4747

48-
test-suite display-test
48+
test-suite text-display-test
4949
import: common-extensions
5050
import: common-ghc-options
5151
import: common-rts-options
@@ -54,6 +54,6 @@ test-suite display-test
5454
hs-source-dirs: test
5555
build-depends:
5656
, base
57-
, display
57+
, text-display
5858
, hspec
5959
, text

0 commit comments

Comments
 (0)