Skip to content

Commit

Permalink
Bump CI and prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mpilgrem committed Nov 14, 2024
1 parent 8fa85d4 commit 766498f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- "9.2.8"
- "9.4.8"
include:
- ghc: "9.6.5"
- ghc: "9.6.6"
cabal: "3.10"
- ghc: "9.8.2"
cabal: "3.10"
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- ghc: "9.4.8"
cabal: "3.8"
winio: true
- ghc: "9.6.5"
- ghc: "9.6.6"
cabal: "3.10"
winio: true
- ghc: "9.8.2"
Expand Down
2 changes: 1 addition & 1 deletion Contributing.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Many other packages depend on `ansi-terminal`. As at February 2024, over 4,700
Many other packages depend on `ansi-terminal`. As at November 2024, over 4,800
packages on [Hackage](https:https://hackage.haskell.org/) depend on it, directly
or indirectly. Consider raising an
[issue](https://github.com/UnkindPartition/ansi-terminal/issues) to
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ support for Haskell, which allows:
- Hiding or showing the cursor
- Moving the cursor around
- Reporting the position of the cursor
- Enabling and disabling automatic line wrapping
- Scrolling the screen up or down
- Switching between the Alternate and Normal Screen Buffers
- Clickable hyperlinks to URIs
Expand All @@ -40,6 +41,7 @@ including:
- Directly changing cursor position: `setCursorColumn` and `setCursorPosition`
- Saving, restoring and reporting cursor position: `saveCursor`,
`restoreCursor` and `reportCursorPosition`
- Automatic line wrapping: `enableLineWrap` and `disableLineWrap`
- Scrolling the screen: `scrollPageUp` and `scrollPageDown`
- Changing the title: `setTitle`

Expand Down
6 changes: 6 additions & 0 deletions ansi-terminal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changes
=======

Version 1.1.2
-------------

* Add `enableLineWrap` and `disableLineWrap`, and support for enabling and
disabling automatic line wrapping.

Version 1.1.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion ansi-terminal/ansi-terminal.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-Version: 1.22
Name: ansi-terminal
Version: 1.1.1
Version: 1.1.2
Category: User Interfaces
Synopsis: Simple ANSI terminal support
Description: ANSI terminal support for Haskell: allows cursor movement,
Expand Down
2 changes: 1 addition & 1 deletion ansi-terminal/stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
snapshot: lts-22.26 # GHC 9.6.5
snapshot: lts-22.41 # GHC 9.6.6
flags:
ansi-terminal:
example: false
Expand Down
2 changes: 1 addition & 1 deletion stack-winio.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
snapshot: lts-22.26 # GHC 9.6.5
snapshot: lts-22.41 # GHC 9.6.6
flags:
ansi-terminal:
example: false
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
snapshot: lts-22.26 # GHC 9.6.5
snapshot: lts-22.41 # GHC 9.6.6
flags:
ansi-terminal:
example: false
Expand Down

0 comments on commit 766498f

Please sign in to comment.