Merge pull request #31 from gmr/tornado6

Change pinning of Tornado to include Tornado 6
This commit is contained in:
dave-shawley 2019-03-05 14:23:35 -05:00 committed by GitHub
commit 8baa4cdc1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View file

@ -6,6 +6,10 @@ Release History
`Next Release`_
---------------
`2.0.1`_ (5 Mar 2019)
----------------------
- Include Tornado 6 in pin
`2.0.0`_ (27 Nov 2018)
----------------------
- Add support for Tornado 5.0
@ -133,4 +137,5 @@ Release History
.. _1.4.2: https://github.com/sprockets/sprockets.http/compare/1.4.1...1.4.2
.. _1.5.0: https://github.com/sprockets/sprockets.http/compare/1.4.2...1.5.0
.. _2.0.0: https://github.com/sprockets/sprockets.http/compare/1.5.0...2.0.0
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.0.0...master
.. _2.0.1: https://github.com/sprockets/sprockets.http/compare/2.0.0...2.0.1
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.0.1...master

View file

@ -1 +1 @@
tornado>=5,<6
tornado>=5,<7

View file

@ -3,7 +3,7 @@ import logging.config
import os
version_info = (2, 0, 0)
version_info = (2, 0, 1)
__version__ = '.'.join(str(v) for v in version_info)