From 97cc0e10b0f86a23096c1197aeef74e3be5da75c Mon Sep 17 00:00:00 2001 From: James Socol Date: Tue, 7 Jan 2014 16:25:37 -0500 Subject: Version 2.1.2 --- CHANGES | 7 +++++++ docs/conf.py | 2 +- setup.py | 2 +- statsd/__init__.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 68c0311..6a81a72 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,13 @@ Statsd Changelog ================ +Version 2.1.2 +------------- + +- Fix negative absolute (non-delta) gauges. +- Improve test coverage. + + Version 2.1.1 ------------- diff --git a/docs/conf.py b/docs/conf.py index 81ef892..d0ec1dc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ copyright = u'2014, James Socol' # The short X.Y version. version = '2.1' # The full version, including alpha/beta/rc tags. -release = '2.1.1' +release = '2.1.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 8575cea..84ea47a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup setup( name='statsd', - version='2.1.1', + version='2.1.2', description='A simple statsd client.', long_description=open('README.rst').read(), author='James Socol', diff --git a/statsd/__init__.py b/statsd/__init__.py index 7e2e884..444eab7 100644 --- a/statsd/__init__.py +++ b/statsd/__init__.py @@ -18,7 +18,7 @@ except ImportError: from .client import StatsClient -VERSION = (2, 1, 1) +VERSION = (2, 1, 2) __version__ = '.'.join(map(str, VERSION)) __all__ = ['StatsClient', 'statsd'] -- cgit v1.2.1