Skip to content

Commit

Permalink
chore: Update support up to GHC 9.6 and bump new version 0.12.0.0 (#171)
Browse files Browse the repository at this point in the history
* chore: Update support up to GHC 9.6

* feat: Ensure backwards compability from ghc 8.10

* bump: 12.0.0
  • Loading branch information
CristhianMotoche committed Sep 1, 2023
1 parent 0a8955e commit 62b1b4c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ["9.2", "9.0", "8.10"]
ghc: ["8.10", "9.0", "9.2", "9.4", "9.6"]
os: [ubuntu-latest]
include:
- os: macos-latest
Expand All @@ -32,7 +32,7 @@ jobs:
uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: "3.6"
cabal-version: "3.8"

- name: Update dependencies with Hackage
run: cabal update
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
## MASTER
## Dotenv 0.12.0.0
### Modified
* Ensure support from GHC 8.10 up to GHC 9.6

### Possible breaking change
* New attribute for `Config` data type to print env vars without actually
running the command (kudos to @flandrade).

## Dotenv 0.11.0.2
### Modified
* Allow optparse-applicative 0.18
Expand Down
5 changes: 3 additions & 2 deletions dotenv.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dotenv
version: 0.11.0.2
version: 0.12.0.0
synopsis: Loads environment variables from dotenv files
homepage: https://github.com/stackbuilders/dotenv-hs
description:
Expand Down Expand Up @@ -34,6 +34,7 @@ description:
license: MIT
license-file: LICENSE
author: Justin Leitgeb
tested-with: ghc ==8.10 ghc ==9.0 ghc ==9.2 ghc ==9.4 ghc ==9.6
maintainer: hackage@stackbuilders.com
copyright: 2015-Present Stack Builders Inc.
category: Configuration
Expand Down Expand Up @@ -62,7 +63,7 @@ flag dev

executable dotenv
main-is: Main.hs
build-depends: base >= 4.9 && < 5.0
build-depends: base >= 4.14 && < 5.0
, base-compat >= 0.4
, dotenv
, optparse-applicative >= 0.11 && < 0.19
Expand Down

0 comments on commit 62b1b4c

Please sign in to comment.