diff options
| author | James Socol <me@jamessocol.com> | 2018-08-22 10:16:46 -0400 |
|---|---|---|
| committer | James Socol <me@jamessocol.com> | 2018-08-22 10:16:46 -0400 |
| commit | 100046bcd349013d6d78922585621159a33d1ebb (patch) | |
| tree | 29b886241d5becb3f688c8dcae87dde3b758a0f8 | |
| parent | f328e82ce62c14ecb624c479333bb61f69483202 (diff) | |
| download | pystatsd-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-- | CHANGES | 13 | ||||
| -rw-r--r-- | docs/conf.py | 4 | ||||
| -rw-r--r-- | setup.py | 2 |
3 files changed, 13 insertions, 6 deletions
@@ -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. @@ -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', |
