summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2007-02-18 13:22:28 -0800
committerRobey Pointer <robey@lag.net>2007-02-18 13:22:28 -0800
commitcb0e01dd867067a6bd6dd7bfc44d4618e6508348 (patch)
tree3f351af781c448122f04355d9623f48bd57ed455
parent87d97fa2091d42b1764cc482a03e1e2005798a45 (diff)
[project @ robey@lag.net-20070218212228-qdk8w1n4is0cady3]
bump version to 1.7 zubat
-rw-r--r--Makefile1
-rw-r--r--README15
-rw-r--r--paramiko/__init__.py8
-rw-r--r--paramiko/transport.py2
-rw-r--r--setup.py4
5 files changed, 21 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 2051cf4d..d4af71d5 100644
--- a/Makefile
+++ b/Makefile
@@ -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)
diff --git a/README b/README
index 5eb0a485..04faf721 100644
--- a/README
+++ b/README
@@ -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
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index 6bdcc111..65f28207 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.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)"
diff --git a/paramiko/transport.py b/paramiko/transport.py
index 439b5ef8..8a1ab1b2 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -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' )
diff --git a/setup.py b/setup.py
index 05355427..b853e39d 100644
--- a/setup.py
+++ b/setup.py
@@ -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',