[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).
This commit is contained in:
parent
920df7d0ae
commit
73e8a134ce
2
Makefile
2
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
|
||||
|
|
12
README
12
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
|
||||
|
|
|
@ -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)"
|
||||
|
||||
|
||||
|
|
|
@ -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' )
|
||||
|
|
4
setup.py
4
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',
|
||||
|
|
Loading…
Reference in New Issue