bump to 1.7.6.
This commit is contained in:
parent
e0a9f91c14
commit
cb913d5d32
1
Makefile
1
Makefile
|
@ -30,6 +30,7 @@
|
|||
# clara (23mar08) - 1.7.3
|
||||
# desmond (06jul08) - 1.7.4
|
||||
# ernest (19jul09) - 1.7.5
|
||||
# fanny (1nov09) - 1.7.6
|
||||
|
||||
|
||||
ifeq ($(wildcard /sbin/md5),/sbin/md5)
|
||||
|
|
6
NEWS
6
NEWS
|
@ -8,6 +8,12 @@ Highlights of what's new in each release:
|
|||
Releases
|
||||
========
|
||||
|
||||
v1.7.6 (Fanny) 1nov09
|
||||
---------------------
|
||||
* fixed bugs 411099 (sftp chdir isn't unicode-safe), 363163 & 411910 (more
|
||||
IPv6 problems on windows), 413850 (race when server closes the channel),
|
||||
426925 (support port numbers in host keys)
|
||||
|
||||
v1.7.5 (Ernest) 19jul09
|
||||
-----------------------
|
||||
* added support for ARC4 cipher and CTR block chaining (Denis Bernard)
|
||||
|
|
4
README
4
README
|
@ -9,10 +9,10 @@ paramiko
|
|||
:Homepage: http://www.lag.net/paramiko/
|
||||
|
||||
|
||||
paramiko 1.7.5
|
||||
paramiko 1.7.6
|
||||
==============
|
||||
|
||||
"Ernest" release, 19 july 2009
|
||||
"Fanny" release, 1 november 2009
|
||||
|
||||
|
||||
What
|
||||
|
|
|
@ -9,10 +9,10 @@ paramiko
|
|||
:Homepage: http://www.lag.net/paramiko/
|
||||
|
||||
|
||||
paramiko 1.7.5
|
||||
paramiko 1.7.6
|
||||
==============
|
||||
|
||||
"Ernest" release, 19 july 2009
|
||||
"Fanny" release, 1 november 2009
|
||||
|
||||
|
||||
What
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (C) 2003-2008 Robey Pointer <robeypointer@gmail.com>
|
||||
# Copyright (C) 2003-2009 Robey Pointer <robeypointer@gmail.com>
|
||||
#
|
||||
# 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/}
|
||||
|
||||
@version: 1.7.5 (Ernest)
|
||||
@version: 1.7.6 (Fanny)
|
||||
@author: Robey Pointer
|
||||
@contact: robeypointer@gmail.com
|
||||
@license: GNU Lesser General Public License (LGPL)
|
||||
|
@ -60,9 +60,9 @@ if sys.version_info < (2, 2):
|
|||
|
||||
|
||||
__author__ = "Robey Pointer <robeypointer@gmail.com>"
|
||||
__date__ = "19 Jul 2009"
|
||||
__version__ = "1.7.5 (Ernest)"
|
||||
__version_info__ = (1, 7, 5)
|
||||
__date__ = "1 Nov 2009"
|
||||
__version__ = "1.7.6 (Fanny)"
|
||||
__version_info__ = (1, 7, 6)
|
||||
__license__ = "GNU Lesser General Public License (LGPL)"
|
||||
|
||||
|
||||
|
|
|
@ -198,7 +198,7 @@ class Transport (threading.Thread):
|
|||
"""
|
||||
|
||||
_PROTO_ID = '2.0'
|
||||
_CLIENT_ID = 'paramiko_1.7.5'
|
||||
_CLIENT_ID = 'paramiko_1.7.6'
|
||||
|
||||
_preferred_ciphers = ( 'aes128-ctr', 'aes256-ctr', 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc',
|
||||
'arcfour128', 'arcfour256' )
|
||||
|
|
6
setup.py
6
setup.py
|
@ -41,20 +41,20 @@ try:
|
|||
except ImportError:
|
||||
from distutils.core import setup
|
||||
kw = {}
|
||||
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
import setup_helper
|
||||
setup_helper.install_custom_make_tarball()
|
||||
|
||||
|
||||
setup(name = "paramiko",
|
||||
version = "1.7.5",
|
||||
version = "1.7.6",
|
||||
description = "SSH2 protocol library",
|
||||
author = "Robey Pointer",
|
||||
author_email = "robeypointer@gmail.com",
|
||||
url = "http://www.lag.net/paramiko/",
|
||||
packages = [ 'paramiko' ],
|
||||
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.5.zip',
|
||||
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.6.zip',
|
||||
license = 'LGPL',
|
||||
platforms = 'Posix; MacOS X; Windows',
|
||||
classifiers = [ 'Development Status :: 5 - Production/Stable',
|
||||
|
|
Loading…
Reference in New Issue