bump version to 1.5.3
This commit is contained in:
Robey Pointer 2006-02-19 23:23:03 -08:00
parent 2103553ff5
commit 5b7957ce39
4 changed files with 31 additions and 13 deletions

View File

@ -17,6 +17,7 @@
# paras (2oct05) - 1.5 # paras (2oct05) - 1.5
# quilava (31oct05) - 1.5.1 # quilava (31oct05) - 1.5.1
# rhydon (04dec05) - 1.5.2 # rhydon (04dec05) - 1.5.2
# squirtle (19feb05) - 1.5.3
release: release:
python ./setup.py sdist --formats=zip python ./setup.py sdist --formats=zip

31
README
View File

@ -1,7 +1,7 @@
paramiko 1.5.2 paramiko 1.5.3
"rhydon" release, 04 dec 2005 "squirtle" release, 19 feb 2006
Copyright (c) 2003-2005 Robey Pointer <robey@lag.net> Copyright (c) 2003-2006 Robey Pointer <robey@lag.net>
http://www.lag.net/paramiko/ http://www.lag.net/paramiko/
@ -113,6 +113,9 @@ 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.
(requires python 2.3.) (requires python 2.3.)
demo_sftp.py
opens an sftp session and does a few simple file operations.
demo_server.py demo_server.py
an ssh server that listens on port 2200 and accepts a login for an ssh server that listens on port 2200 and accepts a login for
'robey' (password 'foo'), and pretends to be a BBS. meant to be a 'robey' (password 'foo'), and pretends to be a BBS. meant to be a
@ -138,6 +141,24 @@ 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.3 SQUIRTLE
* a few performance enhancements
* added HostKeys, for dealing with openssh style "known_hosts" files, and
added support for hashed hostnames
* added Transport.atfork() for dealing with forked children
* added SFTPClient.truncate, SFTPFile.chmod, SFTPFile.chown, SFTPFile.utime,
and SFTPFile.truncate
* improved windows demos [patch from mike looijmans], added an sftp demo, and
moved demos to the demos/ folder
* fixed a few interoperability bugs
* cleaned up logging a bit
* fixed a bug where EOF on a Channel might not be detected by select [found
by thomas steinacher]
* fixed python 2.4-ism that crept in [patch by jan hudec]
* fixed a few reference loops that could have interacted badly with the python
garbage collector
* fixed a bunch of pychecker warnings, some of which were bugs
v1.5.2 RHYDON v1.5.2 RHYDON
* compression support (opt-in via Transport.use_compression) * compression support (opt-in via Transport.use_compression)
* sftp files may be opened with mode flag 'x' for O_EXCL (exclusive-open) * sftp files may be opened with mode flag 'x' for O_EXCL (exclusive-open)
@ -254,7 +275,3 @@ v1.0 JIGGLYPUFF
checking, etc, using openssh defaults or optional configuration (2ndary host checking, etc, using openssh defaults or optional configuration (2ndary host
key files, etc) key files, etc)
local and remote port forwarding local and remote port forwarding
* SFTPClient.set_size
* remove @since that predate 1.0
* put examples in examples/ folder
* sftp server mode should convert all paths to unicode before calling into sftp_si

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.5.2 (rhydon) @version: 1.5.3 (squirtle)
@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,9 +59,9 @@ if sys.version_info < (2, 2):
__author__ = "Robey Pointer <robey@lag.net>" __author__ = "Robey Pointer <robey@lag.net>"
__date__ = "04 Dec 2005" __date__ = "19 Feb 2005"
__version__ = "1.5.2 (rhydon)" __version__ = "1.5.3 (squirtle)"
__version_info__ = (1, 5, 2) __version_info__ = (1, 5, 3)
__license__ = "GNU Lesser General Public License (LGPL)" __license__ = "GNU Lesser General Public License (LGPL)"

View File

@ -42,13 +42,13 @@ except ImportError:
kw = {} kw = {}
setup(name = "paramiko", setup(name = "paramiko",
version = "1.5.2", version = "1.5.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.5.2.zip', download_url = 'http://www.lag.net/paramiko/download/paramiko-1.5.3.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',