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

allow ghc 9.6, 9.8 #22

Merged
merged 1 commit into from
Dec 7, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
ghc: ['8.10.7', '9.2.6', '9.4.8']
ghc: ['8.10.7', '9.2.6', '9.4.8', '9.6.3', '9.8.1']
fail-fast: false

runs-on: ubuntu-latest
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 configurator-pg

## 0.2.9 -- 2023-12-07

* Allow text-2.1 and GHC 9.8.

## 0.2.8 -- 2023-12-07

* Allow megaparsec-9.5 and GHC 9.4.8.
Expand Down
11 changes: 5 additions & 6 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
packages: .
allow-newer:
-- https://github.com/protolude/protolude/pull/141
protolude:base,
protolude:ghc-prim,
-- https://github.com/simonmar/async/issues/133
async:base

-- Required only because 'cabal test' needs this with ghc-9.8;
-- try removing cabal.project in the future.
tests: True

10 changes: 5 additions & 5 deletions configurator-pg.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12
name: configurator-pg
version: 0.2.8
version: 0.2.9
synopsis: Reduced parser for configurator-ng config files
description:
This module provides a simplified and updated interface to the
Expand Down Expand Up @@ -33,12 +33,12 @@ library
Data.Configurator.Parser
Data.Configurator.Syntax
Data.Configurator.Types
build-depends: base >= 4.9 && < 4.18
build-depends: base >= 4.9 && < 4.20
, megaparsec >= 7.0.0 && < 9.6
, containers >= 0.5.6.2 && < 0.7
, protolude >= 0.1.10 && < 0.4
, scientific >= 0.3.4.9 && < 0.4
, text >= 1.2.2.2 && < 2.1
, text >= 1.2.2.2 && < 2.2
hs-source-dirs: src
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude
Expand All @@ -48,15 +48,15 @@ test-suite tests
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: tests
build-depends: base >= 4.9 && < 4.18
build-depends: base >= 4.9 && < 4.20
, configurator-pg
, HUnit >= 1.3.1.2 && < 1.7
, bytestring >= 0.10.6 && < 0.12
, filepath >= 1.4 && < 1.5
, protolude >= 0.1.10 && < 0.4
, test-framework >= 0.8.1.1 && < 0.9
, test-framework-hunit >= 0.3.0.2 && < 0.4
, text >= 1.2.2.2 && < 2.1
, text >= 1.2.2.2 && < 2.2
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude
ghc-options: -Wall