From 2fda984906a9b2396673672e11b58c7de2b8cf6a Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Sun, 6 Jul 2008 18:22:21 -0700 Subject: [PATCH] [project @ robey@lag.net-20080707012221-5fz3q4j2gvqlbmhl] bump version to 1.7.4 (desmond). --- Makefile | 1 + NEWS | 8 ++++++++ README | 6 +++--- paramiko/__init__.py | 8 ++++---- paramiko/transport.py | 2 +- setup.py | 6 +++--- 6 files changed, 20 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index e5d83e3..eb912a2 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ # amy (10jun07) - 1.7.1 # basil (21jan08) - 1.7.2 # clara (23mar08) - 1.7.3 +# desmond (06jul08) - 1.7.4 ifeq ($(wildcard /sbin/md5),/sbin/md5) diff --git a/NEWS b/NEWS index c0a2f88..7e984db 100644 --- a/NEWS +++ b/NEWS @@ -8,6 +8,14 @@ Highlights of what's new in each release: Releases ======== +v1.7.4 (Desmond) 06jul08 +------------------------ + * more randpool fixes for windows, from Dwayne Litzenberger + (NOTE: this may require a pycrypto upgrade on windows) + * fix potential deadlock during key exchange (Dwayne Litzenberger) + * remove MFC dependency from windows (Mark Hammond) + * added some optional API improvements for SFTPClient get() and put() + v1.7.3 (Clara) 23mar08 ---------------------- * SSHClient can be asked not to use an SSH agent now, and not to search diff --git a/README b/README index f1a85b0..6a4c69d 100644 --- a/README +++ b/README @@ -4,15 +4,15 @@ paramiko ======== :Paramiko: Python SSH module -:Copyright: Copyright (c) 2003-2007 Robey Pointer +:Copyright: Copyright (c) 2003-2008 Robey Pointer :License: LGPL :Homepage: http://www.lag.net/paramiko/ -paramiko 1.7.3 +paramiko 1.7.4 ============== -"Clara" release, 23 march 2008 +"Desmond" release, 06 july 2008 What diff --git a/paramiko/__init__.py b/paramiko/__init__.py index 7a83ce8..9a8caec 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -47,7 +47,7 @@ released under the GNU Lesser General Public License (LGPL). Website: U{http://www.lag.net/paramiko/} -@version: 1.7.3 (Clara) +@version: 1.7.4 (Desmond) @author: Robey Pointer @contact: robey@lag.net @license: GNU Lesser General Public License (LGPL) @@ -60,9 +60,9 @@ if sys.version_info < (2, 2): __author__ = "Robey Pointer " -__date__ = "23 Mar 2008" -__version__ = "1.7.3 (Clara)" -__version_info__ = (1, 7, 3) +__date__ = "06 Jul 2008" +__version__ = "1.7.4 (Desmond)" +__version_info__ = (1, 7, 4) __license__ = "GNU Lesser General Public License (LGPL)" diff --git a/paramiko/transport.py b/paramiko/transport.py index 5bfc989..a18e05b 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -194,7 +194,7 @@ class Transport (threading.Thread): """ _PROTO_ID = '2.0' - _CLIENT_ID = 'paramiko_1.7.3' + _CLIENT_ID = 'paramiko_1.7.4' _preferred_ciphers = ( 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc' ) _preferred_macs = ( 'hmac-sha1', 'hmac-md5', 'hmac-sha1-96', 'hmac-md5-96' ) diff --git a/setup.py b/setup.py index 5411e3d..2041fea 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2007 Robey Pointer +# Copyright (C) 2003-2008 Robey Pointer # # This file is part of paramiko. # @@ -48,13 +48,13 @@ if sys.platform == 'darwin': setup(name = "paramiko", - version = "1.7.3", + version = "1.7.4", description = "SSH2 protocol library", author = "Robey Pointer", author_email = "robey@lag.net", url = "http://www.lag.net/paramiko/", packages = [ 'paramiko' ], - download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.3.zip', + download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.4.zip', license = 'LGPL', platforms = 'Posix; MacOS X; Windows', classifiers = [ 'Development Status :: 5 - Production/Stable',