summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2004-11-07 03:10:53 +0000
committerRobey Pointer <robey@lag.net>2004-11-07 03:10:53 +0000
commit73e8a134ce8ac05c30d6d269dda40b42ff4e8488 (patch)
tree42e01603ae7d83ff28ffb3b58da41b1ede2b655a
parent920df7d0ae14dfcca92b4a952b84fa40e7c71222 (diff)
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-109]
v1.0 (jigglypuff) bump all the version numbers up to 1.0 (jigglypuff).
-rw-r--r--Makefile2
-rw-r--r--README12
-rw-r--r--paramiko/__init__.py6
-rw-r--r--paramiko/transport.py2
-rw-r--r--setup.py4
5 files changed, 18 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index b3bfba4c..4222eb13 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,7 @@
# gyarados (31may04)
# horsea (27jun04)
# ivysaur (22oct04)
+# jigglypuff (6nov04) - 1.0
release:
python ./setup.py sdist --formats=zip
@@ -21,3 +22,4 @@ always:
# setup.py
# __init__.py
# README
+# transport.py
diff --git a/README b/README
index c3039650..1360c17d 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-paramiko 0.9
-"ivysaur" release, 22 oct 2004
+paramiko 1.0
+"jigglypuff" release, 6 nov 2004
Copyright (c) 2003-2004 Robey Pointer <robey@lag.net>
@@ -140,6 +140,14 @@ the best and easiest examples of how to use the SFTP class.
highlights of what's new in each release:
+v1.0 JIGGLYPUFF
+* fixed bug that broke server-mode authentication by private key
+* fixed bug where closing a Channel could end up killing the entire Transport
+* actually include demo_windows.py this time (oops!)
+* fixed recently-introduced bug in group-exchange key negotiation that would
+ generate the wrong hash (and therefore fail the initial handshake)
+* server-mode subsystem handler is a bit more flexible
+
v0.9 IVYSAUR
* new ServerInterface class for implementing server policy, so it's no longer
necessary to subclass Transport or Channel -- server code will need to be
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index 772047a4..a8b38bcd 100644
--- a/paramiko/__init__.py
+++ b/paramiko/__init__.py
@@ -48,7 +48,7 @@ released under the GNU Lesser General Public License (LGPL).
Website: U{http://www.lag.net/~robey/paramiko/}
-@version: 0.9 (ivysaur)
+@version: 1.0 (jigglypuff)
@author: Robey Pointer
@contact: robey@lag.net
@license: GNU Lesser General Public License (LGPL)
@@ -61,8 +61,8 @@ if sys.version_info < (2, 2):
__author__ = "Robey Pointer <robey@lag.net>"
-__date__ = "22 Oct 2004"
-__version__ = "0.9-ivysaur"
+__date__ = "6 Nov 2004"
+__version__ = "1.0 (jigglypuff)"
__license__ = "GNU Lesser General Public License (LGPL)"
diff --git a/paramiko/transport.py b/paramiko/transport.py
index a7ca68ea..678cb6dc 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -130,7 +130,7 @@ class BaseTransport (threading.Thread):
is done here.
"""
_PROTO_ID = '2.0'
- _CLIENT_ID = 'paramiko_0.9'
+ _CLIENT_ID = 'paramiko_1.0'
_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 b63d8b98..2c6f5334 100644
--- a/setup.py
+++ b/setup.py
@@ -13,13 +13,13 @@ Required packages:
'''
setup(name = "paramiko",
- version = "0.9-ivysaur",
+ version = "1.0",
description = "SSH2 protocol library",
author = "Robey Pointer",
author_email = "robey@lag.net",
url = "http://www.lag.net/~robey/paramiko/",
packages = [ 'paramiko' ],
- download_url = 'http://www.lag.net/~robey/paramiko/paramiko-0.9-ivysaur.zip',
+ download_url = 'http://www.lag.net/~robey/paramiko/paramiko-1.0.zip',
license = 'LGPL',
platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 3 - Alpha',