summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-05-07 14:16:23 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-05-07 14:16:23 -0700
commit5ec984960bc38ef341d9edacc7d91a4afd9317ee (patch)
treedab96f68e556fa81666b556a0b1f7207001ce61c
parent54613b68859353444538015ad7b117f7cb806014 (diff)
parent7484a221803a3f9aa959d9fd02770ee9c2c90ad5 (diff)
downloadparamiko-5ec984960bc38ef341d9edacc7d91a4afd9317ee.tar.gz
Merge branch '1.13'
-rw-r--r--paramiko/__init__.py2
-rw-r--r--setup.py2
-rw-r--r--sites/www/changelog.rst3
3 files changed, 5 insertions, 2 deletions
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index b1d9aaa9..22f1bc21 100644
--- a/paramiko/__init__.py
+++ b/paramiko/__init__.py
@@ -23,7 +23,7 @@ if sys.version_info < (2, 6):
__author__ = "Jeff Forcier <jeff@bitprophet.org>"
-__version__ = "1.13.0"
+__version__ = "1.13.1"
__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 4a858326..05dc98d5 100644
--- a/setup.py
+++ b/setup.py
@@ -56,7 +56,7 @@ if sys.platform == 'darwin':
setup(
name = "paramiko",
- version = "1.13.0",
+ version = "1.13.1",
description = "SSH2 protocol library",
long_description = longdesc,
author = "Jeff Forcier",
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index 9f8064fa..52fe4ff3 100644
--- a/sites/www/changelog.rst
+++ b/sites/www/changelog.rst
@@ -2,6 +2,9 @@
Changelog
=========
+* :release:`1.13.1 <2014-05-07>`
+* :release:`1.12.4 <2014-05-07>`
+* :release:`1.11.6 <2014-05-07>`
* :bug:`-` `paramiko.file.BufferedFile.read` incorrectly returned text strings
after the Python 3 migration, despite bytes being more appropriate for file
contents (which may be binary or of an unknown encoding.) This has been