Version bump for 1.3 release
This commit is contained in:
+6
-4
@@ -3,18 +3,20 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
1.3.0 (dev)
|
||||
-----------
|
||||
1.3.0 (2014-12-31)
|
||||
------------------
|
||||
|
||||
* Timeout now doesn't trigger a retry by default (can be overriden by setting
|
||||
``retry_on_timeout=True``)
|
||||
* Introduced new parameter ``retry_on_status`` (defaulting to ``(503, 504,
|
||||
)``) controls which http status code should lead to a retry.
|
||||
* Implemented url parsing according to RFC-1738
|
||||
* added support for proper SSL certificate handling
|
||||
* Added support for proper SSL certificate handling
|
||||
* Required parameters are now checked for non-empty values
|
||||
* ConnectionPool now checks if any connections were defined
|
||||
* DummyConnectionPool introduced when no load balancing is needed (only one
|
||||
connection defined)
|
||||
* fixed a race condition in ConnectionPool
|
||||
* Fixed a race condition in ConnectionPool
|
||||
|
||||
1.2.0 (2014-08-03)
|
||||
------------------
|
||||
|
||||
+2
-2
@@ -50,9 +50,9 @@ copyright = u'2013, Honza Král'
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '1.2.0'
|
||||
version = '1.3.0'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.2.0'
|
||||
release = '1.3.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
VERSION = (1, 2, 0)
|
||||
VERSION = (1, 3, 0)
|
||||
__version__ = VERSION
|
||||
__versionstr__ = '.'.join(map(str, VERSION))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user