Release version 2.2.0

This commit is contained in:
Andrew Rabert 2018-11-27 17:47:40 -05:00
parent 14965b7b0c
commit cce73481b8
2 changed files with 7 additions and 2 deletions

View file

@ -3,6 +3,10 @@
Release History
===============
`2.2.0`_ (27 Nov 2018)
----------------------
- Add support for Tornado < 6
`2.1.0`_ (05 Apr 2017)
----------------------
- Add sampling rate for batch submission
@ -68,7 +72,8 @@ Release History
----------------------
- Initial release
.. _Next Release: https://github.com/sprockets/sprockets-influxdb/compare/2.1.0...master
.. _Next Release: https://github.com/sprockets/sprockets-influxdb/compare/2.2.0...master
.. _2.2.0: https://github.com/sprockets/sprockets-influxdb/compare/2.1.0...2.2.0
.. _2.1.0: https://github.com/sprockets/sprockets-influxdb/compare/2.0.0...2.1.0
.. _2.0.0: https://github.com/sprockets/sprockets-influxdb/compare/1.4.0...2.0.0
.. _1.4.0: https://github.com/sprockets/sprockets-influxdb/compare/1.3.0...1.4.0

View file

@ -36,7 +36,7 @@ except ImportError: # Not needed for Tornado<4.5
pass
version_info = (2, 1, 0)
version_info = (2, 2, 0)
__version__ = '.'.join(str(v) for v in version_info)
__all__ = ['__version__', 'version_info', 'add_measurement', 'flush',
'install', 'shutdown', 'Measurement']