[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-62]

readme comments, bump version to 1.5 paras
This commit is contained in:
Robey Pointer 2005-10-02 20:08:39 +00:00
parent f2ec841a15
commit 65883e673b
5 changed files with 9 additions and 8 deletions

View File

@ -14,6 +14,7 @@
# marowak (9apr05) - 1.3
# nidoran (28jun05) - 1.3.1
# oddish (17jul05) - 1.4
# paras (2oct05) - 1.5
release:
python ./setup.py sdist --formats=zip

4
README
View File

@ -134,7 +134,7 @@ the best and easiest examples of how to use the SFTP class.
highlights of what's new in each release:
v1.5 P...
v1.5 PARAS
* added support for "keyboard-interactive" authentication
* added mode (on by default) where password authentication will try to
fallback to "keyboard-interactive" if it's supported
@ -269,7 +269,7 @@ v0.9 FEAROW
- basically, just don't wait synchronously for server responses. queue
up "expected" responses and wait for them on close().
* SFTP implicit file locking?
* server-side keyboard-interactive
* ChannelException like the java version has
* ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr)
* SFTP url parsing function to return (user, pass, host, port, path)

View File

@ -46,7 +46,7 @@ released under the GNU Lesser General Public License (LGPL).
Website: U{http://www.lag.net/paramiko/}
@version: 1.4 (oddish)
@version: 1.5 (paras)
@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__ = "18 Jul 2005"
__version__ = "1.4 (oddish)"
__date__ = "02 Oct 2005"
__version__ = "1.5 (paras)"
__license__ = "GNU Lesser General Public License (LGPL)"

View File

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

View File

@ -30,13 +30,13 @@ Required packages:
'''
setup(name = "paramiko",
version = "1.4",
version = "1.5",
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.4.zip',
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.5.zip',
license = 'LGPL',
platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 5 - Production/Stable',