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

bump version number to 1.4 oddish
This commit is contained in:
Robey Pointer 2005-07-18 06:40:30 +00:00
parent d8ee5e2a4a
commit 5a5cd201b7
5 changed files with 24 additions and 14 deletions

View File

@ -13,6 +13,7 @@
# lapras (28feb05) - 1.2 # lapras (28feb05) - 1.2
# marowak (9apr05) - 1.3 # marowak (9apr05) - 1.3
# nidoran (28jun05) - 1.3.1 # nidoran (28jun05) - 1.3.1
# oddish (17jul05) - 1.4
release: release:
python ./setup.py sdist --formats=zip python ./setup.py sdist --formats=zip

25
README
View File

@ -1,5 +1,5 @@
paramiko 1.3 paramiko 1.4
"marowak" release, 9 apr 2005 "oddish" release, 17 jul 2005
Copyright (c) 2003-2005 Robey Pointer <robey@lag.net> Copyright (c) 2003-2005 Robey Pointer <robey@lag.net>
@ -102,7 +102,8 @@ demo_simple.py
demo.py demo.py
same as demo_simple.py, but allows you to authenticiate using a same as demo_simple.py, but allows you to authenticiate using a
private key, and uses the long form of some of the API calls. private key, attempts to use an SSH-agent if present, and uses the long
form of some of the API calls.
forward.py forward.py
command-line script to set up port-forwarding across an ssh transport. command-line script to set up port-forwarding across an ssh transport.
@ -133,6 +134,17 @@ 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.4 ODDISH
* added SSH-agent support (for posix) from john rochester
* added chdir() and getcwd() to SFTPClient, to emulate a "working directory"
* added get() and put() to SFTPClient, to emulate ftp whole-file transfers
* added check() to SFTPFile (a file hashing protocol extension)
* fixed Channels and SFTPFiles (among others) to auto-close when GC'd
* fixed Channel.fileno() for Windows, this time really
* don't log socket errors as "unknown exception"
* some misc. backward-compatible API improvements (like allowing
Transport.start_client() and start_server() to be called in a blocking way)
v1.3.1 NIDORAN v1.3.1 NIDORAN
* added SFTPClient.close() * added SFTPClient.close()
* fixed up some outdated documentation * fixed up some outdated documentation
@ -237,11 +249,8 @@ v0.9 FEAROW
*** MISSING LINKS *** MISSING LINKS
* ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr) * ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr)
* SFTP url parsing function to return (user, pass, host, port, path)
* SFTPClient.from_url('sftp://robey@arch.lag.net/folder/filename', 'r+') components
keep cache of opened sftp clients by (host, port, username)
how to auth? how to check host key?
... maybe just a util function that parses the url and returns components
* sftp protocol 6 support (ugh....) -- once it settles down more * sftp protocol 6 support (ugh....) -- once it settles down more
* why are big files so slow to transfer? profiling needed... * why are big files so slow to transfer? profiling needed...

View File

@ -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.3.1 (nidoran) @version: 1.4 (oddish)
@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__ = "28 Jun 2005" __date__ = "18 Jul 2005"
__version__ = "1.3.1 (nidoran)" __version__ = "1.4 (oddish)"
__license__ = "GNU Lesser General Public License (LGPL)" __license__ = "GNU Lesser General Public License (LGPL)"

View File

@ -131,7 +131,7 @@ class BaseTransport (threading.Thread):
is done here. is done here.
""" """
_PROTO_ID = '2.0' _PROTO_ID = '2.0'
_CLIENT_ID = 'paramiko_1.3.1' _CLIENT_ID = 'paramiko_1.4'
_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.3.1", version = "1.4",
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.3.1.zip', download_url = 'http://www.lag.net/paramiko/download/paramiko-1.4.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',