diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-02-14 09:38:14 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-02-14 09:38:14 -0800 |
commit | 4a5f007c029cfabac35161d8147d616c79009bd8 (patch) | |
tree | c358394cb9bb96d090d0d9c51e6dc4802ffa5e06 | |
parent | 7b595f4a8b81cfdb6caeb62481684dd585ee805a (diff) |
Cut 1.11.4
-rw-r--r-- | paramiko/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | sites/www/changelog.rst | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/paramiko/__init__.py b/paramiko/__init__.py index de89e08d..eba9f608 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -57,7 +57,7 @@ if sys.version_info < (2, 5): __author__ = "Jeff Forcier <jeff@bitprophet.org>" -__version__ = "1.11.3" +__version__ = "1.11.4" __version_info__ = tuple([ int(d) for d in __version__.split(".") ]) __license__ = "GNU Lesser General Public License (LGPL)" @@ -52,7 +52,7 @@ if sys.platform == 'darwin': setup(name = "paramiko", - version = "1.11.3", + version = "1.11.4", 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 543f41eb..efd6610b 100644 --- a/sites/www/changelog.rst +++ b/sites/www/changelog.rst @@ -2,6 +2,7 @@ Changelog ========= +* :release:`1.11.4 <2014-02-14>` * :release:`1.10.6 <2014-02-14>` * :bug:`252` (`Fabric #1020 <https://github.com/fabric/fabric/issues/1020>`_) Enhanced the implementation of ``ProxyCommand`` to avoid a deadlock/hang |