diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | README | 14 | ||||
-rw-r--r-- | paramiko/__init__.py | 6 | ||||
-rw-r--r-- | paramiko/transport.py | 2 | ||||
-rw-r--r-- | setup.py | 4 |
5 files changed, 19 insertions, 8 deletions
@@ -11,6 +11,7 @@ # jigglypuff (6nov04) - 1.0 # kabuto (12dec04) - 1.1 # lapras (28feb05) - 1.2 +# marowak (9apr05) - 1.3 release: python ./setup.py sdist --formats=zip @@ -1,5 +1,5 @@ -paramiko 1.2 -"lapras" release, 28 feb 2005 +paramiko 1.3 +"marowak" release, 9 apr 2005 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: +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 * added SFTPClient.listdir_attr() for fetching a list of files and their attributes in one call @@ -220,3 +228,5 @@ v0.9 FEAROW * ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr) * server mode needs better documentation * why are big files so slow to transfer? profiling needed... + +* would be nice to have an ftp-like interface to sftp (put, get, chdir...) diff --git a/paramiko/__init__.py b/paramiko/__init__.py index d8824bc4..89411f10 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -48,7 +48,7 @@ released under the GNU Lesser General Public License (LGPL). Website: U{http://www.lag.net/paramiko/} -@version: 1.2 (lapras) +@version: 1.3 (marowak) @author: Robey Pointer @contact: robey@lag.net @license: GNU Lesser General Public License (LGPL) @@ -61,8 +61,8 @@ if sys.version_info < (2, 2): __author__ = "Robey Pointer <robey@lag.net>" -__date__ = "28 Feb 2005" -__version__ = "1.2 (lapras)" +__date__ = "9 Apr 2005" +__version__ = "1.3 (marowak)" __license__ = "GNU Lesser General Public License (LGPL)" diff --git a/paramiko/transport.py b/paramiko/transport.py index 8b7784d7..a1ea5ae1 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -130,7 +130,7 @@ class BaseTransport (threading.Thread): is done here. """ _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_macs = ( 'hmac-sha1', 'hmac-md5', 'hmac-sha1-96', 'hmac-md5-96' ) @@ -30,13 +30,13 @@ Required packages: ''' setup(name = "paramiko", - version = "1.2", + version = "1.3", 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.2.zip', + download_url = 'http://www.lag.net/paramiko/download/paramiko-1.3.zip', license = 'LGPL', platforms = 'Posix; MacOS X; Windows', classifiers = [ 'Development Status :: 3 - Alpha', |