[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-77]
bump up version to 1.5.1
This commit is contained in:
parent
b1d58c5ceb
commit
b9106e4f21
1
Makefile
1
Makefile
|
@ -15,6 +15,7 @@
|
||||||
# nidoran (28jun05) - 1.3.1
|
# nidoran (28jun05) - 1.3.1
|
||||||
# oddish (17jul05) - 1.4
|
# oddish (17jul05) - 1.4
|
||||||
# paras (2oct05) - 1.5
|
# paras (2oct05) - 1.5
|
||||||
|
# quilava (31oct05) - 1.5.1
|
||||||
|
|
||||||
release:
|
release:
|
||||||
python ./setup.py sdist --formats=zip
|
python ./setup.py sdist --formats=zip
|
||||||
|
|
18
README
18
README
|
@ -1,5 +1,5 @@
|
||||||
paramiko 1.4
|
paramiko 1.5.1
|
||||||
"oddish" release, 17 jul 2005
|
"quilava" release, 31 oct 2005
|
||||||
|
|
||||||
Copyright (c) 2003-2005 Robey Pointer <robey@lag.net>
|
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:
|
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
|
v1.5 PARAS
|
||||||
* added support for "keyboard-interactive" authentication
|
* added support for "keyboard-interactive" authentication
|
||||||
* added mode (on by default) where password authentication will try to
|
* 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
|
* add comments to demo & demo_simple about how they don't work on windows
|
||||||
* host-based auth (yuck!)
|
* host-based auth (yuck!)
|
||||||
* support compression
|
* 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?
|
* SFTP implicit file locking?
|
||||||
* ChannelException like the java version has
|
* ChannelException like the java version has
|
||||||
|
|
||||||
|
@ -276,5 +283,4 @@ v0.9 FEAROW
|
||||||
components
|
components
|
||||||
* sftp protocol 6 support (ugh....) -- once it settles down more
|
* sftp protocol 6 support (ugh....) -- once it settles down more
|
||||||
|
|
||||||
* what is psyco?
|
|
||||||
* make a simple example demonstrating use of SocketServer (besides forward.py?)
|
* make a simple example demonstrating use of SocketServer (besides forward.py?)
|
||||||
|
|
|
@ -46,7 +46,7 @@ released under the GNU Lesser General Public License (LGPL).
|
||||||
|
|
||||||
Website: U{http://www.lag.net/paramiko/}
|
Website: U{http://www.lag.net/paramiko/}
|
||||||
|
|
||||||
@version: 1.5 (paras)
|
@version: 1.5.1 (quilava)
|
||||||
@author: Robey Pointer
|
@author: Robey Pointer
|
||||||
@contact: robey@lag.net
|
@contact: robey@lag.net
|
||||||
@license: GNU Lesser General Public License (LGPL)
|
@license: GNU Lesser General Public License (LGPL)
|
||||||
|
@ -59,8 +59,8 @@ if sys.version_info < (2, 2):
|
||||||
|
|
||||||
|
|
||||||
__author__ = "Robey Pointer <robey@lag.net>"
|
__author__ = "Robey Pointer <robey@lag.net>"
|
||||||
__date__ = "02 Oct 2005"
|
__date__ = "31 Oct 2005"
|
||||||
__version__ = "1.5 (paras)"
|
__version__ = "1.5.1 (quilava)"
|
||||||
__license__ = "GNU Lesser General Public License (LGPL)"
|
__license__ = "GNU Lesser General Public License (LGPL)"
|
||||||
|
|
||||||
|
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -30,13 +30,13 @@ Required packages:
|
||||||
'''
|
'''
|
||||||
|
|
||||||
setup(name = "paramiko",
|
setup(name = "paramiko",
|
||||||
version = "1.5",
|
version = "1.5.1",
|
||||||
description = "SSH2 protocol library",
|
description = "SSH2 protocol library",
|
||||||
author = "Robey Pointer",
|
author = "Robey Pointer",
|
||||||
author_email = "robey@lag.net",
|
author_email = "robey@lag.net",
|
||||||
url = "http://www.lag.net/paramiko/",
|
url = "http://www.lag.net/paramiko/",
|
||||||
packages = [ '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',
|
license = 'LGPL',
|
||||||
platforms = 'Posix; MacOS X; Windows',
|
platforms = 'Posix; MacOS X; Windows',
|
||||||
classifiers = [ 'Development Status :: 5 - Production/Stable',
|
classifiers = [ 'Development Status :: 5 - Production/Stable',
|
||||||
|
|
Loading…
Reference in New Issue