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

Support for GHC9.8 #14

Merged
merged 3 commits into from
Jan 30, 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
6 changes: 3 additions & 3 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ jobs:
build:
strategy:
matrix:
ghc: ['8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.1', '9.2.2']
ghc: ['8.6.5', '8.10.7', '9.0.1', '9.2.2', '9.8.1']
os: ['ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}

name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
- uses: actions/checkout@v3
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- name: Cache
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for which

## 0.2.0.2

* Support GHC 9.8

## 0.2.0.1

* Support GHC 9 and GHC 9.2
Expand Down
12 changes: 6 additions & 6 deletions which.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: which
version: 0.2.0.1
version: 0.2.0.2
license: BSD3
license-file: LICENSE
author: Obsidian Systems LLC
Expand All @@ -12,15 +12,15 @@ category: System
synopsis: Determine the full path to an executable.
description: Determine the full path to an executable, similar to the *nix "which" command.
tested-with:
GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.1 || ==8.10.7 || ==9.0.1 || ==9.2.2
GHC ==8.6.5 || ==8.10.7 || ==9.0.1 || ==9.2.2 || ==9.4.2 || == 9.6.2 || ==9.8.1

library
exposed-modules: System.Which
build-depends:
base >= 4.9.0 && < 4.17,
shelly >= 1.8.0 && < 1.10,
text >= 1.2.3 && < 1.3,
template-haskell >= 2.11.0 && < 2.19
base >= 4.9.0 && < 4.20,
shelly >= 1.8.0 && < 1.13,
text >= 1.2.3 && < 2.2,
template-haskell >= 2.11.0 && < 2.22

hs-source-dirs: src
default-language: Haskell2010
Expand Down
Loading