summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Socol <me@jamessocol.com>2018-08-22 10:16:46 -0400
committerJames Socol <me@jamessocol.com>2018-08-22 10:16:46 -0400
commit100046bcd349013d6d78922585621159a33d1ebb (patch)
tree29b886241d5becb3f688c8dcae87dde3b758a0f8
parentf328e82ce62c14ecb624c479333bb61f69483202 (diff)
downloadpystatsd-3.3.tar.gz
Version 3.3v3.3
- Drop support for Python 2.5, 2.6, 3.2, 3.3 (#108, #116). - Add UnixSocketStatsClient (#76, #112). - Add support for timedeltas in timing() (#104, #111). - Fix timer decorator with partial functions (#85). - Remove ABCMeta metaclass (incompatible with Py3) (#109). - Refactor client module (#115). - Various doc updates (#99, #102, #110, #113, #114).
-rw-r--r--CHANGES13
-rw-r--r--docs/conf.py4
-rw-r--r--setup.py2
3 files changed, 13 insertions, 6 deletions
diff --git a/CHANGES b/CHANGES
index 00c28c1..e631a77 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,10 +1,17 @@
Statsd Changelog
================
-Unreleased
-----------
+Version 3.3
+-----------
+
+- Drop support for Python 2.5, 2.6, 3.2, 3.3 (#108, #116).
+- Add UnixSocketStatsClient (#76, #112).
+- Add support for timedeltas in timing() (#104, #111).
+- Fix timer decorator with partial functions (#85).
+- Remove ABCMeta metaclass (incompatible with Py3) (#109).
+- Refactor client module (#115).
+- Various doc updates (#99, #102, #110, #113, #114).
-- Fix timer decorator with partial functions (#85)
Version 3.2.2
-------------
diff --git a/docs/conf.py b/docs/conf.py
index e813c42..341fd48 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2015, James Socol'
# built documents.
#
# The short X.Y version.
-version = '3.2'
+version = '3.3'
# The full version, including alpha/beta/rc tags.
-release = '3.2.2'
+release = '3.3.0'
# 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 59a99d8..edaf82d 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ from setuptools import find_packages, setup
setup(
name='statsd',
- version='3.2.2',
+ version='3.3.0',
description='A simple statsd client.',
long_description=open('README.rst').read(),
author='James Socol',