Increment version for release
This commit is contained in:
parent
a6358f8d13
commit
322819454d
1
Makefile
1
Makefile
|
@ -32,6 +32,7 @@
|
|||
# ernest (19jul09) - 1.7.5
|
||||
# fanny (1nov09) - 1.7.6
|
||||
# george (21may11) - 1.7.7.1
|
||||
# 16 May 2012 - 1.7.7.2
|
||||
|
||||
|
||||
ifeq ($(wildcard /sbin/md5),/sbin/md5)
|
||||
|
|
5
NEWS
5
NEWS
|
@ -8,6 +8,11 @@ Highlights of what's new in each release:
|
|||
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
|
||||
-------------------------
|
||||
* Make the verification phase of SFTP.put optional (Larry Wright)
|
||||
|
|
4
README
4
README
|
@ -9,10 +9,10 @@ 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
|
||||
|
|
|
@ -47,7 +47,7 @@ released under the GNU Lesser General Public License (LGPL).
|
|||
|
||||
Website: U{http://www.lag.net/paramiko/}
|
||||
|
||||
@version: 1.7.7.1 (George)
|
||||
@version: 1.7.7.2
|
||||
@author: Robey Pointer
|
||||
@contact: robeypointer@gmail.com
|
||||
@license: GNU Lesser General Public License (LGPL)
|
||||
|
@ -60,8 +60,8 @@ if sys.version_info < (2, 2):
|
|||
|
||||
|
||||
__author__ = "Robey Pointer <robeypointer@gmail.com>"
|
||||
__date__ = "21 May 2011"
|
||||
__version__ = "1.7.7.1 (George)"
|
||||
__date__ = "16 May 2012"
|
||||
__version__ = "1.7.7.2"
|
||||
__version_info__ = (1, 7, 7, 1)
|
||||
__license__ = "GNU Lesser General Public License (LGPL)"
|
||||
|
||||
|
|
|
@ -194,7 +194,7 @@ class Transport (threading.Thread):
|
|||
"""
|
||||
|
||||
_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',
|
||||
'arcfour128', 'arcfour256' )
|
||||
|
|
Loading…
Reference in New Issue