bump version to 1.5.4
This commit is contained in:
parent
82d8ca6e11
commit
4eb0b9ac3e
4
Makefile
4
Makefile
|
@ -17,10 +17,12 @@
|
||||||
# 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
|
# squirtle (19feb06) - 1.5.3
|
||||||
|
# tentacool (11mar06) - 1.5.4
|
||||||
|
|
||||||
release:
|
release:
|
||||||
python ./setup.py sdist --formats=zip
|
python ./setup.py sdist --formats=zip
|
||||||
|
python ./setup.py bdist_egg --formats=zip
|
||||||
|
|
||||||
docs: always
|
docs: always
|
||||||
epydoc -o docs/ paramiko
|
epydoc -o docs/ paramiko
|
||||||
|
|
12
README
12
README
|
@ -1,5 +1,5 @@
|
||||||
paramiko 1.5.3
|
paramiko 1.5.4
|
||||||
"squirtle" release, 19 feb 2006
|
"tentacool" release, 11 mar 2006
|
||||||
|
|
||||||
Copyright (c) 2003-2006 Robey Pointer <robey@lag.net>
|
Copyright (c) 2003-2006 Robey Pointer <robey@lag.net>
|
||||||
|
|
||||||
|
@ -141,6 +141,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.5.4 TENTACOOL
|
||||||
|
* fixed HostKeys to more correctly emulate a python dict
|
||||||
|
* fixed a bug where file read buffering was too aggressive
|
||||||
|
* improved prefetching so that out-of-order reads still use the prefetch
|
||||||
|
buffer
|
||||||
|
* added experimental SFTPFile.readv() call
|
||||||
|
* more unit tests
|
||||||
|
|
||||||
v1.5.3 SQUIRTLE
|
v1.5.3 SQUIRTLE
|
||||||
* a few performance enhancements
|
* a few performance enhancements
|
||||||
* added HostKeys, for dealing with openssh style "known_hosts" files, and
|
* added HostKeys, for dealing with openssh style "known_hosts" files, and
|
||||||
|
|
|
@ -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.3 (squirtle)
|
@version: 1.5.4 (tentacool)
|
||||||
@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__ = "19 Feb 2005"
|
__date__ = "11 Mar 2005"
|
||||||
__version__ = "1.5.3 (squirtle)"
|
__version__ = "1.5.4 (tentacool)"
|
||||||
__version_info__ = (1, 5, 3)
|
__version_info__ = (1, 5, 4)
|
||||||
__license__ = "GNU Lesser General Public License (LGPL)"
|
__license__ = "GNU Lesser General Public License (LGPL)"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -149,7 +149,7 @@ class Transport (threading.Thread):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_PROTO_ID = '2.0'
|
_PROTO_ID = '2.0'
|
||||||
_CLIENT_ID = 'paramiko_1.5.2'
|
_CLIENT_ID = 'paramiko_1.5.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' )
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -42,13 +42,13 @@ except ImportError:
|
||||||
kw = {}
|
kw = {}
|
||||||
|
|
||||||
setup(name = "paramiko",
|
setup(name = "paramiko",
|
||||||
version = "1.5.3",
|
version = "1.5.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.5.3.zip',
|
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.5.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',
|
||||||
|
|
Loading…
Reference in New Issue