From bf3e4bd4a6bea6d5a35f90cdfd8579631b0c827c Mon Sep 17 00:00:00 2001 From: CrystalSplitter Date: Wed, 25 Jun 2025 00:11:42 -0700 Subject: [PATCH 1/3] Update project dependencies * containers * brick * vty * optparse-applicative --- ghcitui.cabal | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ghcitui.cabal b/ghcitui.cabal index 8130bcf..9d8811b 100644 --- a/ghcitui.cabal +++ b/ghcitui.cabal @@ -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 @@ -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 @@ -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 @@ -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 From 3d824380382adc408800de42cfd0bb64d78ca63c Mon Sep 17 00:00:00 2001 From: CrystalSplitter Date: Wed, 25 Jun 2025 00:20:54 -0700 Subject: [PATCH 2/3] Update action/* for haskell workflow --- .github/workflows/haskell.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/haskell.yaml b/.github/workflows/haskell.yaml index ee09354..499252a 100644 --- a/.github/workflows/haskell.yaml +++ b/.github/workflows/haskell.yaml @@ -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: @@ -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: From ad2b7d45439e478859d9ce33b89b1b6decda29d0 Mon Sep 17 00:00:00 2001 From: CrystalSplitter Date: Wed, 25 Jun 2025 00:35:45 -0700 Subject: [PATCH 3/3] Bump version to 0.4.1.1 --- CHANGELOG.md | 6 ++++++ ghcitui.cabal | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42c59e9..1072586 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/ghcitui.cabal b/ghcitui.cabal index 9d8811b..41ef8ec 100644 --- a/ghcitui.cabal +++ b/ghcitui.cabal @@ -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: