From 998377f353f2f17b6d00e7246ae0ed4628291ffd Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Mon, 13 Feb 2012 16:02:00 -0800 Subject: [PATCH] Cut 1.7.13 --- CHANGES | 2 +- setup.py | 2 +- ssh/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 796cefc..b9beae2 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,6 @@ Temporary, post-Paramiko changelog while we get our sh!t together. -## ssh 1.7.13 (2012-MM-DD) +## ssh 1.7.13 (2012-02-13) * #5: Moved a `fcntl` import closer to where it's used to help avoid `ImportError` problems on Windows platforms. Thanks to Jason Coombs for the diff --git a/setup.py b/setup.py index bd12231..2c332b7 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ if sys.platform == 'darwin': setup(name = "ssh", - version = "1.7.12", + version = "1.7.13", description = "SSH2 protocol library", author = "Jeff Forcier", author_email = "jeff@bitprophet.org", diff --git a/ssh/__init__.py b/ssh/__init__.py index 5935d3c..a215505 100644 --- a/ssh/__init__.py +++ b/ssh/__init__.py @@ -55,7 +55,7 @@ if sys.version_info < (2, 2): __author__ = "Jeff Forcier " -__version__ = "1.7.12" +__version__ = "1.7.13" __license__ = "GNU Lesser General Public License (LGPL)"