Version bump for 1.3 release

This commit is contained in:
Honza Král
2014-12-31 17:02:06 +01:00
parent 9aeabf33f7
commit e3bfeeef22
4 changed files with 10 additions and 8 deletions
+6 -4
View File
@@ -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
View File
@@ -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 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import
VERSION = (1, 2, 0)
VERSION = (1, 3, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
+1 -1
View File
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
import sys
import os
VERSION = (1, 2, 0)
VERSION = (1, 3, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))