Release 2.1.0

This commit is contained in:
Dave Shawley 2019-10-09 11:05:19 -04:00
parent 39ac13d253
commit fd67c42a6a
2 changed files with 5 additions and 4 deletions

View file

@ -3,8 +3,8 @@
Release History
===============
`Next Release`_
---------------
`2.1.0`_ (9 Oct 2019)
---------------------
- Make shutdown timings configurable.
- Add :class:`sprockets.http.testing.SprocketsHttpTestCase`.
- Deprecate calling :func:`sprockets.http.run` without a specified
@ -142,4 +142,5 @@ Release History
.. _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
.. _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
.. _2.1.0: https://github.com/sprockets/sprockets.http/compare/2.0.1...2.1.0
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.1.0...master

View file

@ -4,7 +4,7 @@ import os
import warnings
version_info = (2, 0, 1)
version_info = (2, 1, 0)
__version__ = '.'.join(str(v) for v in version_info)
_unspecified = object()