packages feed

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 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 ++[![Hackage](https://img.shields.io/hackage/v/Blammo.svg?style=flat)](https://hackage.haskell.org/package/Blammo)+[![Stackage Nightly](http://stackage.org/package/Blammo/badge/nightly)](http://stackage.org/nightly/package/Blammo)+[![Stackage LTS](http://stackage.org/package/Blammo/badge/lts)](http://stackage.org/lts/package/Blammo)+[![CI](https://github.com/freckle/blammo/actions/workflows/ci.yml/badge.svg)](https://github.com/freckle/blammo/actions/workflows/ci.yml)+ ![](files/blammo.png)  Blammo is a Structured Logging library that's
README.md view
@@ -1,5 +1,11 @@ # Blammo ++[![Hackage](https://img.shields.io/hackage/v/Blammo.svg?style=flat)](https://hackage.haskell.org/package/Blammo)+[![Stackage Nightly](http://stackage.org/package/Blammo/badge/nightly)](http://stackage.org/nightly/package/Blammo)+[![Stackage LTS](http://stackage.org/package/Blammo/badge/lts)](http://stackage.org/lts/package/Blammo)+[![CI](https://github.com/freckle/blammo/actions/workflows/ci.yml/badge.svg)](https://github.com/freckle/blammo/actions/workflows/ci.yml)+ ![](files/blammo.png)  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