[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-160]

1.3 marowak
bump version to 1.3 / marowak
This commit is contained in:
Robey Pointer 2005-04-10 00:46:41 +00:00
parent 7e40c6f2be
commit 2bdbe28234
5 changed files with 19 additions and 8 deletions

View File

@ -11,6 +11,7 @@
# jigglypuff (6nov04) - 1.0 # jigglypuff (6nov04) - 1.0
# kabuto (12dec04) - 1.1 # kabuto (12dec04) - 1.1
# lapras (28feb05) - 1.2 # lapras (28feb05) - 1.2
# marowak (9apr05) - 1.3
release: release:
python ./setup.py sdist --formats=zip python ./setup.py sdist --formats=zip

14
README
View File

@ -1,5 +1,5 @@
paramiko 1.2 paramiko 1.3
"lapras" release, 28 feb 2005 "marowak" release, 9 apr 2005
Copyright (c) 2003-2005 Robey Pointer <robey@lag.net> Copyright (c) 2003-2005 Robey Pointer <robey@lag.net>
@ -133,6 +133,14 @@ 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.3 MAROWAK
* fixed a bug where packets larger than about 12KB would cause the session
to die on all platforms except osx
* added a potential workaround for windows to let Channel.fileno() (and
therefore the select module) work!
* changed API for subsystem handlers (sorry!) to pass more info and make it
easier to write a functional SFTP server
v1.2 LAPRAS v1.2 LAPRAS
* added SFTPClient.listdir_attr() for fetching a list of files and their * added SFTPClient.listdir_attr() for fetching a list of files and their
attributes in one call attributes in one call
@ -220,3 +228,5 @@ v0.9 FEAROW
* ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr) * ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr)
* server mode needs better documentation * server mode needs better documentation
* why are big files so slow to transfer? profiling needed... * why are big files so slow to transfer? profiling needed...
* would be nice to have an ftp-like interface to sftp (put, get, chdir...)

View File

@ -48,7 +48,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.2 (lapras) @version: 1.3 (marowak)
@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)
@ -61,8 +61,8 @@ if sys.version_info < (2, 2):
__author__ = "Robey Pointer <robey@lag.net>" __author__ = "Robey Pointer <robey@lag.net>"
__date__ = "28 Feb 2005" __date__ = "9 Apr 2005"
__version__ = "1.2 (lapras)" __version__ = "1.3 (marowak)"
__license__ = "GNU Lesser General Public License (LGPL)" __license__ = "GNU Lesser General Public License (LGPL)"

View File

@ -130,7 +130,7 @@ class BaseTransport (threading.Thread):
is done here. is done here.
""" """
_PROTO_ID = '2.0' _PROTO_ID = '2.0'
_CLIENT_ID = 'paramiko_1.2' _CLIENT_ID = 'paramiko_1.3'
_preferred_ciphers = ( 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc' ) _preferred_ciphers = ( 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc' )
_preferred_macs = ( 'hmac-sha1', 'hmac-md5', 'hmac-sha1-96', 'hmac-md5-96' ) _preferred_macs = ( 'hmac-sha1', 'hmac-md5', 'hmac-sha1-96', 'hmac-md5-96' )

View File

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