statsd-client 0.1.0.2 → 0.1.0.3
raw patch · 2 files changed
+3/−5 lines, 2 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Network.Statsd: type Key = String
Files
- src/Network/Statsd.hs +2/−4
- statsd-client.cabal +1/−1
src/Network/Statsd.hs view
@@ -7,6 +7,7 @@ Hostname, Port, Stat,+ Key, increment, decrement,@@ -79,10 +80,7 @@ uriRegName' :: URIAuth -> String uriRegName' auth = let hostname = uriRegName auth- stripped = if isIPv6address hostname- then (takeWhile (/=']') . dropWhile (=='[')) hostname- else hostname- in stripped+ in (takeWhile (/=']') . dropWhile (=='[')) hostname client :: Hostname -> Port -> Stat -> Maybe Key -> IO (Maybe StatsdClient) client host port namespace key = do
statsd-client.cabal view
@@ -1,5 +1,5 @@ name: statsd-client-version: 0.1.0.2+version: 0.1.0.3 cabal-version: >=1.10 build-type: Simple license: MIT