Add README.rst to MANIFEST

This commit is contained in:
Ryan Mclean 2016-12-12 15:07:17 -05:00
parent ffbb61ee61
commit 40e50a337f
4 changed files with 9 additions and 3 deletions

View file

@ -1,4 +1,5 @@
include LICENSE
include README.rst
include tests.py
graft docs
graft requires

View file

@ -98,7 +98,7 @@ variables:
If your application handles signal handling for shutdowns, the
:meth:`~sprockets.mixins.influxdb.shutdown` method will try to cleanly ensure
that any buffered metrics in the InfluxDB collector are written prior to
shutting down. The method returns a :cls:`~tornado.concurrent.TracebackFuture`
shutting down. The method returns a :class:`~tornado.concurrent.TracebackFuture`
that should be waited on prior to shutting down.
For environment variable based configuration, use the ``INFLUX_SCHEME``,

View file

@ -3,6 +3,10 @@
Release History
===============
`3.0.1`_ (12-Dec-2016)
----------------------
- Add README.rst to MANIFEST.in
`3.0.0`_ (12-Dec-2016)
----------------------
- Add install usage pattern for using mixin within Tornado app
@ -55,7 +59,8 @@ Release History
- Add :class:`sprockets.mixins.metrics.InfluxDBMixin`
- Add :class:`sprockets.mixins.metrics.influxdb.InfluxDBConnection`
.. _Next Release: https://github.com/sprockets/sprockets.mixins.metrics/compare/3.0.0...master
.. _Next Release: https://github.com/sprockets/sprockets.mixins.metrics/compare/3.0.1...master
.. _3.0.1: https://github.com/sprockets/sprockets.mixins.metrics/compare/3.0.0...3.0.1
.. _3.0.0: https://github.com/sprockets/sprockets.mixins.metrics/compare/2.1.1...3.0.0
.. _2.1.1: https://github.com/sprockets/sprockets.mixins.metrics/compare/2.1.0...2.1.1
.. _2.1.0: https://github.com/sprockets/sprockets.mixins.metrics/compare/2.0.1...2.1.0

View file

@ -1,3 +1,3 @@
version_info = (3, 0, 0)
version_info = (3, 0, 1)
__version__ = '.'.join(str(v) for v in version_info)
__all__ = ['__version__', 'version_info']