mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 11:19:26 +00:00
Release 2.1.0
This commit is contained in:
parent
39ac13d253
commit
fd67c42a6a
2 changed files with 5 additions and 4 deletions
|
@ -3,8 +3,8 @@
|
||||||
Release History
|
Release History
|
||||||
===============
|
===============
|
||||||
|
|
||||||
`Next Release`_
|
`2.1.0`_ (9 Oct 2019)
|
||||||
---------------
|
---------------------
|
||||||
- Make shutdown timings configurable.
|
- Make shutdown timings configurable.
|
||||||
- Add :class:`sprockets.http.testing.SprocketsHttpTestCase`.
|
- Add :class:`sprockets.http.testing.SprocketsHttpTestCase`.
|
||||||
- Deprecate calling :func:`sprockets.http.run` without a specified
|
- 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
|
.. _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.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
|
.. _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
|
||||||
|
|
|
@ -4,7 +4,7 @@ import os
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
|
|
||||||
version_info = (2, 0, 1)
|
version_info = (2, 1, 0)
|
||||||
__version__ = '.'.join(str(v) for v in version_info)
|
__version__ = '.'.join(str(v) for v in version_info)
|
||||||
|
|
||||||
_unspecified = object()
|
_unspecified = object()
|
||||||
|
|
Loading…
Reference in a new issue