packages feed

statsd-rupp 0.4.0.1 → 0.4.0.2

raw patch · 3 files changed

+6/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -6,6 +6,10 @@ and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/). +## 0.4.0.2 - 2023-09-05++- Flush interval cannot be zero or below.+ ## 0.4.0.1 - 2023-09-05  - Improve resilience against bad input.
src/System/Metrics/StatsD/Internal.hs view
@@ -280,7 +280,7 @@     v =       all validateKey [bs, bg, bc, bt, be]         && bool (validateKey bn) True (null cfg.namespace)-        && 0 <= cfg.flushInterval+        && cfg.flushInterval > 0         && all (\pc -> pc > 0 && 100 > pc) cfg.timingPercentiles     pfx =       if null cfg.namespace
statsd-rupp.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           statsd-rupp-version:        0.4.0.1+version:        0.4.0.2 synopsis:       Simple StatsD Client description:    Please see the README on GitHub at <https://github.com/jprupp/statsd-rupp#readme> category:       System