Bump the version to 1.0.5

Fix a small typo in the comments and bump the version to 1.0.5
This commit is contained in:
Brian Korty 2017-08-07 14:17:53 -04:00
parent fe57ad9eb1
commit 3138885d37
3 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,10 @@
Version History
===============
`1.0.5`_ Aug 7, 2017
--------------------
- Add support for allow_nonstandard_methods and max_clients
`1.0.4`_ May 12, 2017
---------------------
- Add support for passing the user_agent parameter per request
@ -21,6 +25,7 @@ Version History
---------------------
- Initial Version
.. _1.0.5: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.4...1.0.5
.. _1.0.4: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.3...1.0.4
.. _1.0.3: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.2...1.0.3
.. _1.0.2: https://github.com/sprockets/sprockets.mixins.http/compare/1.0.1...1.0.2

View file

@ -23,7 +23,7 @@ def read_requirements(name):
setuptools.setup(
name='sprockets.mixins.http',
version='1.0.4',
version='1.0.5',
description='HTTP Client Mixin for Tornado RequestHandlers',
long_description=open('README.rst').read(),
url='https://github.com/sprockets/sprockets.mixins.http',

View file

@ -90,7 +90,7 @@ class HTTPClientMixin(object):
:param str auth_password: Password for HTTP authentication
:param str user_agent: The str used for the ``User-Agent`` header,
default used if unspecified.
:param bool allow_nonstardard_methods: Allow methods that don't adhere
:param bool allow_nonstandard_methods: Allow methods that don't adhere
to the HTTP spec.
:rtype: HTTPResponse