diff options
| -rw-r--r-- | CHANGES | 6 | ||||
| -rw-r--r-- | statsd/__init__.py | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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)) |
