summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Socol <james@mozilla.com>2012-05-11 18:18:32 -0400
committerJames Socol <james@mozilla.com>2012-05-11 18:18:32 -0400
commit3e78169def352792ace04317096208fb782fc348 (patch)
treee0b23fdfceeaee1b45f7f6b33845d3bceda1ee4b
parentd6b7ebe839cf5d255ddfb24f4142e7fa0a2378d9 (diff)
downloadpystatsd-3e78169def352792ace04317096208fb782fc348.tar.gz
Version bump for IPv4 and floats.v0.5.1
-rw-r--r--CHANGES6
-rw-r--r--statsd/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index a745cd8..7b57034 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,12 @@
Statsd Changelog
================
+Version 0.5.1
+-------------
+
+- Stop supporting IPv6. StatsD doesn't support it, and it breaks things.
+- incr, decr, and gauge now support floating point values.
+
Version 0.5.0
-------------
diff --git a/statsd/__init__.py b/statsd/__init__.py
index d2d5e23..3e10293 100644
--- a/statsd/__init__.py
+++ b/statsd/__init__.py
@@ -11,7 +11,7 @@ from client import StatsClient
__all__ = ['StatsClient', 'statsd']
-VERSION = (0, 5, 0)
+VERSION = (0, 5, 1)
__version__ = '.'.join(map(str, VERSION))