Increment version for release

This commit is contained in:
Jeff Forcier 2012-05-16 16:03:10 -07:00
parent a6358f8d13
commit 322819454d
6 changed files with 13 additions and 7 deletions

View File

@ -32,6 +32,7 @@
# ernest (19jul09) - 1.7.5 # ernest (19jul09) - 1.7.5
# fanny (1nov09) - 1.7.6 # fanny (1nov09) - 1.7.6
# george (21may11) - 1.7.7.1 # george (21may11) - 1.7.7.1
# 16 May 2012 - 1.7.7.2
ifeq ($(wildcard /sbin/md5),/sbin/md5) ifeq ($(wildcard /sbin/md5),/sbin/md5)

5
NEWS
View File

@ -8,6 +8,11 @@ Highlights of what's new in each release:
Releases Releases
======== ========
v1.7.7.2 16may12
----------------
* Merge pull request #63: https://github.com/paramiko/paramiko/pull/63 which
fixes exceptions that occur when re-keying over fast connections.
v1.7.7.1 (George) 21may11 v1.7.7.1 (George) 21may11
------------------------- -------------------------
* Make the verification phase of SFTP.put optional (Larry Wright) * Make the verification phase of SFTP.put optional (Larry Wright)

4
README
View File

@ -9,10 +9,10 @@ paramiko
:Homepage: http://www.lag.net/paramiko/ :Homepage: http://www.lag.net/paramiko/
paramiko 1.7.7.1 paramiko 1.7.7.2
================ ================
"George" release, 21 may 2011 Release of 16 May 2012
What What

View File

@ -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.7.1 (George) @version: 1.7.7.2
@author: Robey Pointer @author: Robey Pointer
@contact: robeypointer@gmail.com @contact: robeypointer@gmail.com
@license: GNU Lesser General Public License (LGPL) @license: GNU Lesser General Public License (LGPL)
@ -60,8 +60,8 @@ if sys.version_info < (2, 2):
__author__ = "Robey Pointer <robeypointer@gmail.com>" __author__ = "Robey Pointer <robeypointer@gmail.com>"
__date__ = "21 May 2011" __date__ = "16 May 2012"
__version__ = "1.7.7.1 (George)" __version__ = "1.7.7.2"
__version_info__ = (1, 7, 7, 1) __version_info__ = (1, 7, 7, 1)
__license__ = "GNU Lesser General Public License (LGPL)" __license__ = "GNU Lesser General Public License (LGPL)"

View File

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

View File

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