bump version to 1.7.3 (clara)
This commit is contained in:
parent
f5f203d5ea
commit
c52b11ba17
3
Makefile
3
Makefile
|
@ -27,6 +27,7 @@
|
||||||
# zubat (18feb07) - 1.7
|
# zubat (18feb07) - 1.7
|
||||||
# amy (10jun07) - 1.7.1
|
# amy (10jun07) - 1.7.1
|
||||||
# basil (21jan08) - 1.7.2
|
# basil (21jan08) - 1.7.2
|
||||||
|
# clara (23mar08) - 1.7.3
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(wildcard /sbin/md5),/sbin/md5)
|
ifeq ($(wildcard /sbin/md5),/sbin/md5)
|
||||||
|
@ -42,6 +43,8 @@ release: docs
|
||||||
python ./setup.py bdist_egg
|
python ./setup.py bdist_egg
|
||||||
zip -r dist/docs.zip docs && rm -rf docs
|
zip -r dist/docs.zip docs && rm -rf docs
|
||||||
cd dist && $(MD5SUM) paramiko*.zip *.gz > md5-sums
|
cd dist && $(MD5SUM) paramiko*.zip *.gz > md5-sums
|
||||||
|
cd dist && gpg -ba paramiko*.zip
|
||||||
|
cd dist && gpg -ba paramiko*.gz
|
||||||
|
|
||||||
|
|
||||||
docs: always
|
docs: always
|
||||||
|
|
16
NEWS
16
NEWS
|
@ -8,6 +8,22 @@ Highlights of what's new in each release:
|
||||||
Releases
|
Releases
|
||||||
========
|
========
|
||||||
|
|
||||||
|
v1.7.3 (Clara) 23mar08
|
||||||
|
----------------------
|
||||||
|
* SSHClient can be asked not to use an SSH agent now, and not to search
|
||||||
|
for private keys
|
||||||
|
* added WarningPolicy option for SSHClient (warn, but allow, on unknown
|
||||||
|
server keys)
|
||||||
|
* added Channel.exit_status_ready to poll if a channel has received an
|
||||||
|
exit status yet
|
||||||
|
* new demo for reverse port forwarding
|
||||||
|
* (bug 177117) fix UTF-8 passwords
|
||||||
|
* (bug 189466) fix typo in osrandom.py
|
||||||
|
* (bug 191657) potentially fix a race at channel shutdown
|
||||||
|
* (bug 192749) document that SSHClient.connect may raise socket.error
|
||||||
|
* (bug 193779) translate EOFError into AuthException during authentication
|
||||||
|
* (bug 200416) don't create a new logger object for each channel
|
||||||
|
|
||||||
v1.7.2 (Basil) 21jan08
|
v1.7.2 (Basil) 21jan08
|
||||||
----------------------
|
----------------------
|
||||||
* (bug 137219) catch EINTR and handle correctly
|
* (bug 137219) catch EINTR and handle correctly
|
||||||
|
|
4
README
4
README
|
@ -9,10 +9,10 @@ paramiko
|
||||||
:Homepage: http://www.lag.net/paramiko/
|
:Homepage: http://www.lag.net/paramiko/
|
||||||
|
|
||||||
|
|
||||||
paramiko 1.7.2
|
paramiko 1.7.3
|
||||||
==============
|
==============
|
||||||
|
|
||||||
"Basil" release, 21 january 2008
|
"Clara" release, 23 march 2008
|
||||||
|
|
||||||
|
|
||||||
What
|
What
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (C) 2003-2007 Robey Pointer <robey@lag.net>
|
# Copyright (C) 2003-2008 Robey Pointer <robey@lag.net>
|
||||||
#
|
#
|
||||||
# This file is part of paramiko.
|
# This file is part of paramiko.
|
||||||
#
|
#
|
||||||
|
@ -47,7 +47,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.7.2 (Basil)
|
@version: 1.7.3 (Clara)
|
||||||
@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)
|
||||||
|
@ -60,9 +60,9 @@ if sys.version_info < (2, 2):
|
||||||
|
|
||||||
|
|
||||||
__author__ = "Robey Pointer <robey@lag.net>"
|
__author__ = "Robey Pointer <robey@lag.net>"
|
||||||
__date__ = "21 Jan 2008"
|
__date__ = "23 Mar 2008"
|
||||||
__version__ = "1.7.3 (C...)"
|
__version__ = "1.7.3 (Clara)"
|
||||||
__version_info__ = (1, 7, 2)
|
__version_info__ = (1, 7, 3)
|
||||||
__license__ = "GNU Lesser General Public License (LGPL)"
|
__license__ = "GNU Lesser General Public License (LGPL)"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -194,7 +194,7 @@ class Transport (threading.Thread):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_PROTO_ID = '2.0'
|
_PROTO_ID = '2.0'
|
||||||
_CLIENT_ID = 'paramiko_1.7.2'
|
_CLIENT_ID = 'paramiko_1.7.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' )
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -48,13 +48,13 @@ if sys.platform == 'darwin':
|
||||||
|
|
||||||
|
|
||||||
setup(name = "paramiko",
|
setup(name = "paramiko",
|
||||||
version = "1.7.2",
|
version = "1.7.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.7.2.zip',
|
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.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',
|
||||||
|
|
Loading…
Reference in New Issue