Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/haskell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.2.2
- uses: haskell-actions/setup@v2.7.6
with:
ghc-version: 9.8.1
cabal-version: latest

- name: Cache
uses: actions/cache@v4.0.0
uses: actions/cache@v4.2.0
env:
cache-name: cache-cabal
with:
Expand Down Expand Up @@ -61,14 +61,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.2.2
- uses: haskell-actions/setup@v2.7.6
with:
ghc-version: 9.4.7
cabal-version: latest

- name: Cache
uses: actions/cache@v4.0.0
uses: actions/cache@v4.2.0
env:
cache-name: cache-cabal-oldest
with:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Revision history for ghcitui

## 0.4.1.1 -- 2025-06-25

### Misc

- Updated dependency ranges. No new features or bug fixes.

## 0.4.1.0 -- 2024-11-16

### Bug fixes
Expand Down
10 changes: 5 additions & 5 deletions ghcitui.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: ghcitui
version: 0.4.1.0
version: 0.4.1.1
synopsis: A Terminal User Interface (TUI) for GHCi

description:
Expand Down Expand Up @@ -49,7 +49,7 @@ executable ghcitui
main-is: Main.hs
build-depends: base >= 4.16 && < 5
, ghcitui-brick
, optparse-applicative >= 0.17 && < 0.19
, optparse-applicative >= 0.17 && < 0.20
, ghcitui
, text
hs-source-dirs: app
Expand All @@ -71,7 +71,7 @@ library
hs-source-dirs: lib/ghcitui-core
build-depends: base >= 4.16 && < 5
, array ^>= 0.5
, containers >= 0.6.8 && < 0.8
, containers >= 0.6.8 && < 0.9
, errors >= 2.2 && < 2.4
-- Needed to limit ghcid compat.
, extra >= 1.7.14 && < 1.9
Expand Down Expand Up @@ -111,7 +111,7 @@ library
library ghcitui-brick
hs-source-dirs: lib/ghcitui-brick
build-depends: base >= 4.16 && < 5
, brick >= 2.2 && < 2.5
, brick >= 2.2 && < 2.10
, containers
, errors
, file-embed ^>= 0.0.15
Expand All @@ -121,7 +121,7 @@ library ghcitui-brick
, text
, text-zipper ^>= 0.13
, vector >= 0.10 && < 0.14
, vty >= 5.38 && < 6.3
, vty >= 5.38 && < 6.5
, word-wrap ^>= 0.5
exposed-modules: Ghcitui.Brick
other-modules: Ghcitui.Brick.AppConfig
Expand Down