bump version to 0.3.8.5

This commit is contained in:
Andy McKay 2013-02-15 10:54:00 -08:00
parent f229781475
commit bb60197605
3 changed files with 10 additions and 13 deletions

View File

@ -1,13 +1,5 @@
Django Statsd
=============
BSD and MPL
Integration between statsd and django. It allows you to use different clients,
sends timings as middleware and integrates with django debug toolbar.
Portions of this are from commonware:
Credits:
- jbalogh and jsocol for statsd and commonware, which I just ripped parts out
of and put in here.
- robhudson for django-debug-toolbar
For more see our docs at: http://readthedocs.org/docs/django-statsd/en/latest/
https://github.com/jsocol/commonware/blob/master/LICENSE

View File

@ -16,6 +16,10 @@ Credits:
Changes
-------
0.3.8.5:
- don't count some 404 as 500 and fix deprecation warnings
0.3.8.4:
- gauge support
@ -310,6 +314,8 @@ Contributors
* glogiotatidis: https://github.com/andymckay/django-statsd/pull/16
* tominsam: https://github.com/andymckay/django-statsd/pull/17
* youngbob: https://github.com/andymckay/django-statsd/pull/19
* jsatt: https://github.com/andymckay/django-statsd/pull/20
* youngbob: https://github.com/andymckay/django-statsd/pull/21
Indices and tables
==================
@ -317,4 +323,3 @@ Indices and tables
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

View File

@ -4,7 +4,7 @@ from setuptools import setup
setup(
# Because django-statsd was taken, I called this django-statsd-mozilla.
name='django-statsd-mozilla',
version='0.3.8.4',
version='0.3.8.5',
description='Django interface with statsd',
long_description=open('README.rst').read(),
author='Andy McKay',