summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2007-06-10 21:45:06 -0700
committerRobey Pointer <robey@lag.net>2007-06-10 21:45:06 -0700
commit39b45b4000e1422309e56004fc863834e6674beb (patch)
tree38eb663d481ef59a2023b7a92e9f2bd097b114c4
parent7431c59c20a3661b8a6a0fb1d4d3417bc3a25e45 (diff)
[project @ robey@lag.net-20070611044506-2c1c1t2avdr3yuaa]
bump up to 1.7.1 (amy)
-rw-r--r--Makefile1
-rw-r--r--paramiko/__init__.py8
-rw-r--r--paramiko/transport.py2
-rw-r--r--setup.py4
4 files changed, 8 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index d4af71d5..6706f412 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,7 @@
# xatu (14oct06) - 1.6.3
# yanma (19nov06) - 1.6.4
# zubat (18feb07) - 1.7
+# amy (10jun07) - 1.7.1
ifeq ($(wildcard /sbin/md5),/sbin/md5)
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index 94565d94..f0955b28 100644
--- a/paramiko/__init__.py
+++ b/paramiko/__init__.py
@@ -47,7 +47,7 @@ released under the GNU Lesser General Public License (LGPL).
Website: U{http://www.lag.net/paramiko/}
-@version: 1.7 (zubat)
+@version: 1.7.1 (Amy)
@author: Robey Pointer
@contact: robey@lag.net
@license: GNU Lesser General Public License (LGPL)
@@ -60,9 +60,9 @@ if sys.version_info < (2, 2):
__author__ = "Robey Pointer <robey@lag.net>"
-__date__ = "18 Feb 2007"
-__version__ = "1.7 (zubat)"
-__version_info__ = (1, 7, 0)
+__date__ = "10 Jun 2007"
+__version__ = "1.7.1 (Amy)"
+__version_info__ = (1, 7, 1)
__license__ = "GNU Lesser General Public License (LGPL)"
diff --git a/paramiko/transport.py b/paramiko/transport.py
index 8a1ab1b2..9e7d3b15 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -149,7 +149,7 @@ class Transport (threading.Thread):
"""
_PROTO_ID = '2.0'
- _CLIENT_ID = 'paramiko_1.7'
+ _CLIENT_ID = 'paramiko_1.7.1'
_preferred_ciphers = ( 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc' )
_preferred_macs = ( 'hmac-sha1', 'hmac-md5', 'hmac-sha1-96', 'hmac-md5-96' )
diff --git a/setup.py b/setup.py
index b853e39d..c561e25c 100644
--- a/setup.py
+++ b/setup.py
@@ -48,13 +48,13 @@ if sys.platform == 'darwin':
setup(name = "paramiko",
- version = "1.7",
+ version = "1.7.1",
description = "SSH2 protocol library",
author = "Robey Pointer",
author_email = "robey@lag.net",
url = "http://www.lag.net/paramiko/",
packages = [ 'paramiko' ],
- download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.zip',
+ download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.1.zip',
license = 'LGPL',
platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 5 - Production/Stable',