monad-metrics 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+4/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- monad-metrics.cabal +3/−3
- src/Control/Monad/Metrics.hs +1/−1
monad-metrics.cabal view
@@ -1,8 +1,8 @@ name: monad-metrics-version: 0.1.0.1+version: 0.1.0.2 synopsis: A convenient wrapper around EKG metrics description: A convenient wrapper for collecting application metrics. Please see the README.md for more information.-homepage: https://github.com/parsonsmatt/monad-metrics#readme+homepage: https://github.com/sellerlabs/monad-metrics#readme license: MIT license-file: LICENSE author: Matthew Parsons@@ -38,4 +38,4 @@ source-repository head type: git- location: https://github.com/parsonsmatt/monad-metrics+ location: https://github.com/sellerlabs/monad-metrics
src/Control/Monad/Metrics.hs view
@@ -215,7 +215,7 @@ start <- liftIO $ getTime Monotonic result <- action end <- liftIO $ getTime Monotonic- distribution name (diffTime resolution start end)+ distribution name (diffTime resolution end start) return result -- | Record the time of executing the given action in seconds. Defers to