Skip to content

Commit

Permalink
bump to 1.7.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robey Pointer committed Nov 2, 2009
1 parent e0a9f91 commit cb913d5
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 13 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions paramiko/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2003-2008 Robey Pointer <[email protected]>
# Copyright (C) 2003-2009 Robey Pointer <[email protected]>
#
# This file is part of paramiko.
#
Expand Down Expand Up @@ -47,7 +47,7 @@
Website: U{http://www.lag.net/paramiko/}
@version: 1.7.5 (Ernest)
@version: 1.7.6 (Fanny)
@author: Robey Pointer
@contact: [email protected]
@license: GNU Lesser General Public License (LGPL)
Expand All @@ -60,9 +60,9 @@


__author__ = "Robey Pointer <[email protected]>"
__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)"


Expand Down
2 changes: 1 addition & 1 deletion paramiko/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -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' )
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,20 @@
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 = "[email protected]",
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',
Expand Down

0 comments on commit cb913d5

Please sign in to comment.