mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 11:19:26 +00:00
Merge pull request #31 from gmr/tornado6
Change pinning of Tornado to include Tornado 6
This commit is contained in:
commit
8baa4cdc1f
3 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
tornado>=5,<6
|
||||
tornado>=5,<7
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue