summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-14 09:36:33 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-14 09:36:33 -0800
commit457a34f55b1d69c3f7699b3bc055f6c6d90371cd (patch)
tree6f8cb5bb0c364ebf87118025b4ec0377b7725a88
parent2690a90ccb7a19b0676900f8804fb3da5f3130a6 (diff)
Cut 1.10.6
-rw-r--r--paramiko/__init__.py2
-rw-r--r--setup.py2
-rw-r--r--sites/www/changelog.rst1
3 files changed, 3 insertions, 2 deletions
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index 924e8bb5..7f60b1fa 100644
--- a/paramiko/__init__.py
+++ b/paramiko/__init__.py
@@ -55,7 +55,7 @@ if sys.version_info < (2, 5):
__author__ = "Jeff Forcier <jeff@bitprophet.org>"
-__version__ = "1.10.5"
+__version__ = "1.10.6"
__version_info__ = tuple([ int(d) for d in __version__.split(".") ])
__license__ = "GNU Lesser General Public License (LGPL)"
diff --git a/setup.py b/setup.py
index 8ec4a0ea..bc5f9e6d 100644
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ if sys.platform == 'darwin':
setup(name = "paramiko",
- version = "1.10.5",
+ version = "1.10.6",
description = "SSH2 protocol library",
author = "Jeff Forcier",
author_email = "jeff@bitprophet.org",
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index af4c69e4..c26b996c 100644
--- a/sites/www/changelog.rst
+++ b/sites/www/changelog.rst
@@ -2,6 +2,7 @@
Changelog
=========
+* :release:`1.10.6 <2014-02-14>`
* :bug:`34` (PR :issue:`35`) Fix SFTP prefetching incompatibility with some
SFTP servers regarding request/response ordering. Thanks to Richard
Kettlewell for catch & patch.