packages feed

opt-env-conf 0.6.0.1 → 0.6.0.2

raw patch · 3 files changed

+8/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [0.6.0.2] - 2024-10-20++### Changed++* Fixed that configuration parsing errors were double-`show`n.+ ## [0.6.0.1] - 2024-10-18  ### Added
opt-env-conf.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           opt-env-conf-version:        0.6.0.1+version:        0.6.0.2 synopsis:       Settings parsing for Haskell: command-line arguments, environment variables, and configuration values. homepage:       https://github.com/NorfairKing/opt-env-conf#readme bug-reports:    https://github.com/NorfairKing/opt-env-conf/issues
src/OptEnvConf/Error.hs view
@@ -113,7 +113,7 @@         ParseErrorConfigRead md s ->           ["Failed to parse configuration: "]             : maybe [] renderConfDoc md-            ++ [[chunk $ T.pack $ show s]]+            ++ [[chunk $ T.pack s]]         ParseErrorMissingCommand cs ->           ["Missing command, available commands:"]             : availableCommandsLines cs