Skip to content

Commit

Permalink
Use list syntax for tested-with field
Browse files Browse the repository at this point in the history
  • Loading branch information
pgujjula committed Apr 22, 2024
1 parent b52f820 commit bf8f12c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions apply-merge.cabal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cabal-version: 3.6
cabal-version: 2.2

-- This file has been generated from package.yaml by hpack version 0.36.0.
--
Expand All @@ -18,7 +18,9 @@ copyright: Preetham Gujjula
license: BSD-3-Clause
build-type: Simple
tested-with:
GHC == {9.2.8, 9.4.8, 9.6.4}
GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.4
extra-doc-files:
README.md
ChangeLog.md
Expand Down
7 changes: 4 additions & 3 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# SPDX-FileCopyrightText: Copyright Preetham Gujjula
# SPDX-License-Identifier: BSD-3-Clause
verbatim:
cabal-version: 3.6
name: apply-merge
version: 0.1.0.0
synopsis: Lift a binary, non-decreasing function onto ordered lists and order the output
Expand All @@ -15,7 +13,10 @@ copyright: "Preetham Gujjula"
license: BSD-3-Clause

# Can't test with ghc-9.8 series because falsify doesn't support it yet.
tested-with: GHC == {9.2.8, 9.4.8, 9.6.4}
tested-with:
- GHC == 9.2.8
- GHC == 9.4.8
- GHC == 9.6.4

extra-doc-files:
- README.md
Expand Down

0 comments on commit bf8f12c

Please sign in to comment.