monad-metrics 0.2.1.0 → 0.2.1.1
raw patch · 2 files changed
+47/−48 lines, 2 filesdep ~exceptionsPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: exceptions
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−1
- monad-metrics.cabal +41/−47
CHANGELOG.md view
@@ -1,8 +1,13 @@ # Change Log -## Upcoming...+## v0.2.1.1 +- Bump `exceptions` upper bound from 0.9 to 0.10++## v0.2.1.0+ - Introduced `timedList` method, to store the same distribution data under several names at once.+- Fix some documentation typos ## v0.2.0.0
monad-metrics.cabal view
@@ -1,50 +1,44 @@-name: monad-metrics-version: 0.2.1.0-cabal-version: >=1.10-build-type: Simple-license: MIT-license-file: LICENSE-copyright: 2017 Seller Labs, 2016 Taylor Fausak-maintainer: matt@sellerlabs.com-homepage: https://github.com/sellerlabs/monad-metrics#readme-synopsis: A convenient wrapper around EKG metrics-description:- A convenient wrapper for collecting application metrics. Please see the README.md for more information.-category: Web-author: Matthew Parsons-extra-source-files:- README.md- CHANGELOG.md--source-repository head- type: git- location: https://github.com/sellerlabs/monad-metrics+name: monad-metrics+version: 0.2.1.1+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/sellerlabs/monad-metrics#readme+license: MIT+license-file: LICENSE+author: Matthew Parsons+maintainer: matt@sellerlabs.com+copyright: 2017 Seller Labs, 2016 Taylor Fausak+category: Web+build-type: Simple+extra-source-files: README.md, CHANGELOG.md+cabal-version: >=1.10 library- exposed-modules:- Control.Monad.Metrics- Control.Monad.Metrics.Internal- build-depends:- base >=4.8 && <5,- clock >=0.3 && <0.8,- ekg-core >=0.1.0.1 && <0.2,- exceptions >=0.6 && <0.9,- hashable ==1.2.*,- microlens >=0.2 && <0.5,- mtl >=2 && <2.3,- text <1.3,- transformers >=0.3 && <0.6,- unordered-containers ==0.2.*- default-language: Haskell2010- hs-source-dirs: src- ghc-options: -Wall+ hs-source-dirs: src+ exposed-modules: Control.Monad.Metrics+ , Control.Monad.Metrics.Internal+ build-depends: base >= 4.8 && < 5+ , clock >= 0.3 && < 0.8+ , ekg-core >= 0.1.0.1 && < 0.2+ , exceptions >= 0.6 && < 0.10+ , hashable >= 1.2 && < 1.3+ , microlens >= 0.2 && < 0.5+ , mtl >= 2 && < 2.3+ , text < 1.3+ , transformers >= 0.3 && < 0.6+ , unordered-containers >= 0.2 && < 0.3+ default-language: Haskell2010+ ghc-options: -Wall -test-suite monad-metrics-test- type: exitcode-stdio-1.0- main-is: Spec.hs- build-depends:- base >=4.8 && <=5.0,- monad-metrics -any- default-language: Haskell2010- hs-source-dirs: test- ghc-options: -threaded -rtsopts -with-rtsopts=-N+test-suite monad-metrics-test+ type: exitcode-stdio-1.0+ hs-source-dirs: test+ main-is: Spec.hs+ build-depends: base >= 4.8 && <= 5.0+ , monad-metrics+ ghc-options: -threaded -rtsopts -with-rtsopts=-N+ default-language: Haskell2010++source-repository head+ type: git+ location: https://github.com/sellerlabs/monad-metrics