diff --git a/Makefile b/Makefile index b3bfba4..4222eb1 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 c303965..1360c17 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 @@ -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 772047a..a8b38bc 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 " -__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 a7ca68e..678cb6d 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 b63d8b9..2c6f533 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',