bump version to 1.7 zubat
This commit is contained in:
Robey Pointer 2007-02-18 13:22:28 -08:00
parent 87d97fa209
commit cb0e01dd86
5 changed files with 21 additions and 9 deletions

View File

@ -24,6 +24,7 @@
# weedle (16aug06) - 1.6.2
# xatu (14oct06) - 1.6.3
# yanma (19nov06) - 1.6.4
# zubat (18feb07) - 1.7
ifeq ($(wildcard /sbin/md5),/sbin/md5)

15
README
View File

@ -1,5 +1,5 @@
paramiko 1.6.4
"yanma" release, 19 nov 2006
paramiko 1.7
"zubat" release, 18 feb 2007
Copyright (c) 2003-2007 Robey Pointer <robey@lag.net>
@ -151,6 +151,17 @@ which will verify that most of the core components are working correctly.
highlights of what's new in each release:
v1.7 ZUBAT
* added x11 channel support (patch from david guerizec)
* added reverse port forwarding support
* (bug 75370) raise an exception when contacting a broken SFTP server
* (bug 80295) SSHClient shouldn't expand the user directory twice when reading
RSA/DSS keys
* (bug 82383) typo in DSS key in SSHClient
* (bug 83523) python 2.5 warning when encoding a file's modification time
* if connecting to an SSH agent fails, silently fallback instead of raising
an exception
v1.6.4 YANMA
* fix setup.py on osx (oops!)
* (bug 69330) check for the existence of RSA/DSA keys before trying to open

View File

@ -47,7 +47,7 @@ released under the GNU Lesser General Public License (LGPL).
Website: U{http://www.lag.net/paramiko/}
@version: 1.6.4 (yanma)
@version: 1.7 (zubat)
@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 <robey@lag.net>"
__date__ = "19 Nov 2006"
__version__ = "1.6.4 (yanma)"
__version_info__ = (1, 6, 4)
__date__ = "18 Feb 2007"
__version__ = "1.7 (zubat)"
__version_info__ = (1, 7, 0)
__license__ = "GNU Lesser General Public License (LGPL)"

View File

@ -149,7 +149,7 @@ class Transport (threading.Thread):
"""
_PROTO_ID = '2.0'
_CLIENT_ID = 'paramiko_1.6.4'
_CLIENT_ID = 'paramiko_1.7'
_preferred_ciphers = ( 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc' )
_preferred_macs = ( 'hmac-sha1', 'hmac-md5', 'hmac-sha1-96', 'hmac-md5-96' )

View File

@ -48,13 +48,13 @@ if sys.platform == 'darwin':
setup(name = "paramiko",
version = "1.6.4",
version = "1.7",
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.6.4.zip',
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.zip',
license = 'LGPL',
platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 5 - Production/Stable',