Blammo 1.1.1.1 → 1.1.1.2
raw patch · 5 files changed
+19/−3 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Blammo.cabal +1/−1
- CHANGELOG.md +5/−1
- README.lhs +6/−0
- README.md +6/−0
- src/Blammo/Logging/LogSettings/Env.hs +1/−1
Blammo.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: Blammo-version: 1.1.1.1+version: 1.1.1.2 license: MIT license-file: LICENSE maintainer: Freckle Education
CHANGELOG.md view
@@ -1,4 +1,8 @@-## [_Unreleased_](https://github.com/freckle/blammo/compare/v1.1.1.1...main)+## [_Unreleased_](https://github.com/freckle/blammo/compare/v1.1.1.2...main)++## [v1.1.1.2](https://github.com/freckle/blammo/compare/v1.1.1.1...v1.1.1.2)++- Fix bug in `LOG_CONCURRENCY` parser ## [v1.1.1.1](https://github.com/freckle/blammo/compare/v1.1.1.0...v1.1.1.1)
README.lhs view
@@ -1,5 +1,11 @@ # Blammo ++[](https://hackage.haskell.org/package/Blammo)+[](http://stackage.org/nightly/package/Blammo)+[](http://stackage.org/lts/package/Blammo)+[](https://github.com/freckle/blammo/actions/workflows/ci.yml)+  Blammo is a Structured Logging library that's
README.md view
@@ -1,5 +1,11 @@ # Blammo ++[](https://hackage.haskell.org/package/Blammo)+[](http://stackage.org/nightly/package/Blammo)+[](http://stackage.org/lts/package/Blammo)+[](https://github.com/freckle/blammo/actions/workflows/ci.yml)+  Blammo is a Structured Logging library that's
src/Blammo/Logging/LogSettings/Env.hs view
@@ -71,7 +71,7 @@ , var (endo readLogFormat setLogSettingsFormat) "LOG_FORMAT" (def mempty) , var (endo readLogColor setLogSettingsColor) "LOG_COLOR" (def mempty) , var (endo readEither setLogSettingsBreakpoint) "LOG_BREAKPOINT" (def mempty)- , var (endo readEither setLogSettingsConcurrency) "LOG_CONCURRENCY" (def mempty)+ , var (endo readEither (setLogSettingsConcurrency . Just)) "LOG_CONCURRENCY" (def mempty) ] endo