packages feed

network-carbon 1.0.0 → 1.0.1

raw patch · 2 files changed

+19/−6 lines, 2 filesdep ~bytestringdep ~networkdep ~textPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: bytestring, network, text, time, vector

API changes (from Hackage documentation)

Files

Changelog.md view
@@ -1,3 +1,16 @@+## 1.0.1++* Decreased lower-bounds of:++      * `bytestring`+      * `network`+      * `text`+      * `time`+      * `vector`++  Thanks to Renzo Carbonara (@k0001) for this change.++ ## 1.0.0  * Initial release.
network-carbon.cabal view
@@ -1,5 +1,5 @@ name: network-carbon-version: 1.0.0+version: 1.0.1 synopsis: A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools) homepage: http://github.com/ocharles/network-carbon license: BSD3@@ -16,11 +16,11 @@    build-depends:     base >=4.6 && <4.8,-    bytestring >=0.10.2.0 && <0.11,-    network >= 2.5.0.0 && < 2.6,-    text >= 1.1.1.3 && < 1.2,-    time >= 1.4.2 && < 1.5,-    vector >= 0.10.11.0 && < 0.11+    bytestring >=0.9 && <0.11,+    network >= 2.4 && < 2.6,+    text >= 0.10 && < 1.2,+    time >= 1.4 && < 1.5,+    vector >= 0.10 && < 0.11    hs-source-dirs: src   default-language: Haskell2010