Skip to content

Commit

Permalink
cabal-version
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesdbrock committed May 9, 2023
1 parent 0c8fdaa commit e15b8df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: cabal check
- run: cabal v2-update $CONFIG
- run: cabal v2-freeze $CONFIG
# https://github.com/actions/cache
Expand Down
14 changes: 7 additions & 7 deletions replace-megaparsec.cabal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cabal-version: 3.8
cabal-version: 3.0
name: replace-megaparsec
version: 1.5.0.0
synopsis: Find, replace, and split string patterns with Megaparsec parsers (instead of regex)
Expand All @@ -24,11 +24,11 @@ source-repository head

library
hs-source-dirs: src
build-depends: base >= 4.0 && < 5.0
, megaparsec >= 7.0.0
, bytestring
, text
, parser-combinators >= 1.2.0
build-depends: base >=4.0 && <5.0
, megaparsec >=7.0.0 && <10.0.0
, bytestring >=0.2 && <1.0
, text >=0.2 && <3.0
, parser-combinators >=1.2.0 && < 2.0.0
default-language: Haskell2010
exposed-modules: Replace.Megaparsec
, Replace.Megaparsec.Internal.ByteString
Expand All @@ -42,7 +42,7 @@ test-suite test
default-language: Haskell2010
build-depends: base >= 4.0
, replace-megaparsec
, megaparsec >= 7.0.0
, megaparsec
, hspec
, text
, bytestring

0 comments on commit e15b8df

Please sign in to comment.