summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2005-10-31 03:28:54 +0000
committerRobey Pointer <robey@lag.net>2005-10-31 03:28:54 +0000
commitb9106e4f214c7b58b18d67e1a01d69eccbb9155d (patch)
treec617aba32117a0a122af288cc438a127194e0750
parentb1d58c5cebbb1a2a847bb20045c5b981f2f99c5b (diff)
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-77]
bump up version to 1.5.1
-rw-r--r--Makefile1
-rw-r--r--README18
-rw-r--r--paramiko/__init__.py6
-rw-r--r--setup.py4
4 files changed, 18 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index f939d003..3ff0ba58 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,7 @@
# nidoran (28jun05) - 1.3.1
# oddish (17jul05) - 1.4
# paras (2oct05) - 1.5
+# quilava (31oct05) - 1.5.1
release:
python ./setup.py sdist --formats=zip
diff --git a/README b/README
index b2fc4ea1..6502956f 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-paramiko 1.4
-"oddish" release, 17 jul 2005
+paramiko 1.5.1
+"quilava" release, 31 oct 2005
Copyright (c) 2003-2005 Robey Pointer <robey@lag.net>
@@ -134,6 +134,16 @@ the best and easiest examples of how to use the SFTP class.
highlights of what's new in each release:
+v1.5.1 QUILAVA
+* SFTPFile.prefetch() added to dramatically speed up downloads (automatically
+ turned on in SFTPClient.get())
+* fixed bug where garbage-collected Channels could trigger the Transport to
+ close the session (reported by gordon good)
+* fixed a deadlock in rekeying (reported by wendell wood)
+* fixed some windows bugs and SFTPAttributes.__str__() (reported by grzegorz
+ makarewicz)
+* better sftp error reporting by adding fake "errno" info to IOErrors
+
v1.5 PARAS
* added support for "keyboard-interactive" authentication
* added mode (on by default) where password authentication will try to
@@ -265,9 +275,6 @@ v0.9 FEAROW
* add comments to demo & demo_simple about how they don't work on windows
* host-based auth (yuck!)
* support compression
-* SFTP pipelining
- - basically, just don't wait synchronously for server responses. queue
- up "expected" responses and wait for them on close().
* SFTP implicit file locking?
* ChannelException like the java version has
@@ -276,5 +283,4 @@ v0.9 FEAROW
components
* sftp protocol 6 support (ugh....) -- once it settles down more
-* what is psyco?
* make a simple example demonstrating use of SocketServer (besides forward.py?)
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index 64a29a50..36a8264d 100644
--- a/paramiko/__init__.py
+++ b/paramiko/__init__.py
@@ -46,7 +46,7 @@ released under the GNU Lesser General Public License (LGPL).
Website: U{http://www.lag.net/paramiko/}
-@version: 1.5 (paras)
+@version: 1.5.1 (quilava)
@author: Robey Pointer
@contact: robey@lag.net
@license: GNU Lesser General Public License (LGPL)
@@ -59,8 +59,8 @@ if sys.version_info < (2, 2):
__author__ = "Robey Pointer <robey@lag.net>"
-__date__ = "02 Oct 2005"
-__version__ = "1.5 (paras)"
+__date__ = "31 Oct 2005"
+__version__ = "1.5.1 (quilava)"
__license__ = "GNU Lesser General Public License (LGPL)"
diff --git a/setup.py b/setup.py
index 9daf85ea..db19c541 100644
--- a/setup.py
+++ b/setup.py
@@ -30,13 +30,13 @@ Required packages:
'''
setup(name = "paramiko",
- version = "1.5",
+ version = "1.5.1",
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.5.zip',
+ download_url = 'http://www.lag.net/paramiko/download/paramiko-1.5.1.zip',
license = 'LGPL',
platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 5 - Production/Stable',