Skip to content

Commit 62b1b4c

Browse files
chore: Update support up to GHC 9.6 and bump new version 0.12.0.0 (#171)
* chore: Update support up to GHC 9.6 * feat: Ensure backwards compability from ghc 8.10 * bump: 12.0.0
1 parent 0a8955e commit 62b1b4c

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
ghc: ["9.2", "9.0", "8.10"]
21+
ghc: ["8.10", "9.0", "9.2", "9.4", "9.6"]
2222
os: [ubuntu-latest]
2323
include:
2424
- os: macos-latest
@@ -32,7 +32,7 @@ jobs:
3232
uses: haskell/actions/setup@v2
3333
with:
3434
ghc-version: ${{ matrix.ghc }}
35-
cabal-version: "3.6"
35+
cabal-version: "3.8"
3636

3737
- name: Update dependencies with Hackage
3838
run: cabal update

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
## MASTER
2+
## Dotenv 0.12.0.0
3+
### Modified
4+
* Ensure support from GHC 8.10 up to GHC 9.6
5+
6+
### Possible breaking change
7+
* New attribute for `Config` data type to print env vars without actually
8+
running the command (kudos to @flandrade).
9+
210
## Dotenv 0.11.0.2
311
### Modified
412
* Allow optparse-applicative 0.18

dotenv.cabal

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: dotenv
2-
version: 0.11.0.2
2+
version: 0.12.0.0
33
synopsis: Loads environment variables from dotenv files
44
homepage: https://github.com/stackbuilders/dotenv-hs
55
description:
@@ -34,6 +34,7 @@ description:
3434
license: MIT
3535
license-file: LICENSE
3636
author: Justin Leitgeb
37+
tested-with: ghc ==8.10 ghc ==9.0 ghc ==9.2 ghc ==9.4 ghc ==9.6
3738
maintainer: [email protected]
3839
copyright: 2015-Present Stack Builders Inc.
3940
category: Configuration
@@ -62,7 +63,7 @@ flag dev
6263

6364
executable dotenv
6465
main-is: Main.hs
65-
build-depends: base >= 4.9 && < 5.0
66+
build-depends: base >= 4.14 && < 5.0
6667
, base-compat >= 0.4
6768
, dotenv
6869
, optparse-applicative >= 0.11 && < 0.19

0 commit comments

Comments
 (0)