dotenv 0.3.0.2 → 0.3.0.3
raw patch · 3 files changed
+12/−2 lines, 3 filesdep ~optparse-applicativePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: optparse-applicative
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- app/Main.hs +6/−0
- dotenv.cabal +2/−2
CHANGELOG.md view
@@ -1,3 +1,7 @@+## Dotenv 0.3.0.3++* Allow optparse-applicative 0.13+ ## Dotenv 0.3.0.1 * Remove unnecessary package dependencies.
app/Main.hs view
@@ -1,4 +1,10 @@+{-# LANGUAGE CPP #-}+ module Main where++#if MIN_VERSION_optparse_applicative(0,13,0)+import Data.Monoid ((<>))+#endif import Options.Applicative
dotenv.cabal view
@@ -1,5 +1,5 @@ name: dotenv-version: 0.3.0.2+version: 0.3.0.3 synopsis: Loads environment variables from dotenv files homepage: https://github.com/stackbuilders/dotenv-hs description:@@ -49,7 +49,7 @@ build-depends: base >=4.5 && <5.0 , base-compat >= 0.4 , dotenv >= 0.3.0.2- , optparse-applicative >=0.11 && < 0.13+ , optparse-applicative >=0.11 && < 0.14 , megaparsec >= 5.0 && < 6.0 , process , text