mirror of
https://github.com/sprockets/sprockets.mixins.metrics.git
synced 2024-11-24 03:00:24 +00:00
Add README.rst to MANIFEST
This commit is contained in:
parent
ffbb61ee61
commit
40e50a337f
4 changed files with 9 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
include LICENSE
|
include LICENSE
|
||||||
|
include README.rst
|
||||||
include tests.py
|
include tests.py
|
||||||
graft docs
|
graft docs
|
||||||
graft requires
|
graft requires
|
||||||
|
|
|
@ -98,7 +98,7 @@ variables:
|
||||||
If your application handles signal handling for shutdowns, the
|
If your application handles signal handling for shutdowns, the
|
||||||
:meth:`~sprockets.mixins.influxdb.shutdown` method will try to cleanly ensure
|
:meth:`~sprockets.mixins.influxdb.shutdown` method will try to cleanly ensure
|
||||||
that any buffered metrics in the InfluxDB collector are written prior to
|
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.
|
that should be waited on prior to shutting down.
|
||||||
|
|
||||||
For environment variable based configuration, use the ``INFLUX_SCHEME``,
|
For environment variable based configuration, use the ``INFLUX_SCHEME``,
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
Release History
|
Release History
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
`3.0.1`_ (12-Dec-2016)
|
||||||
|
----------------------
|
||||||
|
- Add README.rst to MANIFEST.in
|
||||||
|
|
||||||
`3.0.0`_ (12-Dec-2016)
|
`3.0.0`_ (12-Dec-2016)
|
||||||
----------------------
|
----------------------
|
||||||
- Add install usage pattern for using mixin within Tornado app
|
- 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.InfluxDBMixin`
|
||||||
- Add :class:`sprockets.mixins.metrics.influxdb.InfluxDBConnection`
|
- 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
|
.. _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.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
|
.. _2.1.0: https://github.com/sprockets/sprockets.mixins.metrics/compare/2.0.1...2.1.0
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
version_info = (3, 0, 0)
|
version_info = (3, 0, 1)
|
||||||
__version__ = '.'.join(str(v) for v in version_info)
|
__version__ = '.'.join(str(v) for v in version_info)
|
||||||
__all__ = ['__version__', 'version_info']
|
__all__ = ['__version__', 'version_info']
|
||||||
|
|
Loading…
Reference in a new issue