Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump CI and prepare for release #172

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading