ekg-carbon 1.0.5 → 1.0.6
raw patch · 2 files changed
+11/−4 lines, 2 filesdep ~basedep ~timedep ~vector
Dependency ranges changed: base, time, vector
Files
- Changelog.md +7/−0
- ekg-carbon.cabal +4/−4
Changelog.md view
@@ -1,3 +1,10 @@+## 1.0.6++### Non-breaking Changes++* Increased the upper bound of `base`, `time` and `vector`.+ This is a minor version bump as `vector` has changed contexts for instances.+ ## 1.0.5 * Increased upper-bounds of:
ekg-carbon.cabal view
@@ -1,5 +1,5 @@ name: ekg-carbon-version: 1.0.5+version: 1.0.6 synopsis: An EKG backend to send statistics to Carbon (part of Graphite monitoring tools) homepage: http://github.com/ocharles/ekg-carbon license: BSD3@@ -15,14 +15,14 @@ System.Remote.Monitoring.Carbon build-depends:- base >=4.6 && <4.9,+ base >=4.6 && <4.10, ekg-core >= 0.1.0.1 && < 0.2, network >= 2.4 && < 2.7, network-carbon >= 1.0.0 && <1.1, text >= 0.10 && < 1.3,- time >= 1.4 && < 1.6,+ time >= 1.4 && < 1.8, unordered-containers,- vector >= 0.10 && < 0.12+ vector >= 0.10 && < 0.13 hs-source-dirs: src default-language: Haskell2010