version 1.7.7.1

This commit is contained in:
Robey Pointer 2011-05-23 13:49:47 -07:00
parent afae8dd7c5
commit 7bcbc24198
6 changed files with 10 additions and 10 deletions

View File

@ -31,7 +31,7 @@
# desmond (06jul08) - 1.7.4
# ernest (19jul09) - 1.7.5
# fanny (1nov09) - 1.7.6
# george (21may11) - 1.7.7
# george (21may11) - 1.7.7.1
ifeq ($(wildcard /sbin/md5),/sbin/md5)

4
NEWS
View File

@ -8,8 +8,8 @@ Highlights of what's new in each release:
Releases
========
v1.7.7 (George) 21may11
-----------------------
v1.7.7.1 (George) 21may11
-------------------------
* Make the verification phase of SFTP.put optional (Larry Wright)
* Patches to fix AIX support (anonymous)
* Patch from Michele Bertoldi to allow compression to be turned on in the

4
README
View File

@ -9,8 +9,8 @@ paramiko
:Homepage: http://www.lag.net/paramiko/
paramiko 1.7.7
==============
paramiko 1.7.7.1
================
"George" release, 21 may 2011

View File

@ -47,7 +47,7 @@ released under the GNU Lesser General Public License (LGPL).
Website: U{http://www.lag.net/paramiko/}
@version: 1.7.7 (George)
@version: 1.7.7.1 (George)
@author: Robey Pointer
@contact: robeypointer@gmail.com
@license: GNU Lesser General Public License (LGPL)
@ -61,8 +61,8 @@ if sys.version_info < (2, 2):
__author__ = "Robey Pointer <robeypointer@gmail.com>"
__date__ = "21 May 2011"
__version__ = "1.7.7 (George)"
__version_info__ = (1, 7, 7)
__version__ = "1.7.7.1 (George)"
__version_info__ = (1, 7, 7, 1)
__license__ = "GNU Lesser General Public License (LGPL)"

View File

@ -194,7 +194,7 @@ class Transport (threading.Thread):
"""
_PROTO_ID = '2.0'
_CLIENT_ID = 'paramiko_1.7.7'
_CLIENT_ID = 'paramiko_1.7.7.1'
_preferred_ciphers = ( 'aes128-ctr', 'aes256-ctr', 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc',
'arcfour128', 'arcfour256' )

View File

@ -48,7 +48,7 @@ if sys.platform == 'darwin':
setup(name = "paramiko",
version = "1.7.7",
version = "1.7.7.1",
description = "SSH2 protocol library",
author = "Robey Pointer",
author_email = "robeypointer@gmail.com",