[Checkins] SVN: zc.buildoutsftp/branches/dev/ Updated release info.

Jim Fulton jim at zope.com
Thu Mar 22 11:58:09 EDT 2007


Log message for revision 73459:
  Updated release info.
  

Changed:
  D   zc.buildoutsftp/branches/dev/CHANGES.txt
  U   zc.buildoutsftp/branches/dev/README.txt
  U   zc.buildoutsftp/branches/dev/setup.py

-=-
Deleted: zc.buildoutsftp/branches/dev/CHANGES.txt
===================================================================
--- zc.buildoutsftp/branches/dev/CHANGES.txt	2007-03-22 15:52:53 UTC (rev 73458)
+++ zc.buildoutsftp/branches/dev/CHANGES.txt	2007-03-22 15:58:08 UTC (rev 73459)
@@ -1,28 +0,0 @@
-Status and Change History
-=========================
-
-This package is experimental.  It seems to work based on manual
-testing. I'm still trying to figure out how to write automated tests
-for this.
-
-0.2.2
------
-
-Fixed a bug in handling multiple host keys for a given host.
-
-0.2.1
------
-
-Fixed a bug in handling multiple user keys.
-
-0.2
----
-
-Added missing entry point.  
-
-Adjusted content-type information to work with setuptools.
-
-0.1
----
-
-Initial release

Modified: zc.buildoutsftp/branches/dev/README.txt
===================================================================
--- zc.buildoutsftp/branches/dev/README.txt	2007-03-22 15:52:53 UTC (rev 73458)
+++ zc.buildoutsftp/branches/dev/README.txt	2007-03-22 15:58:08 UTC (rev 73459)
@@ -52,3 +52,39 @@
 The extension works with Open SSH on unix-based systems and PuTTY on
 Windows.  Unless a password is given in the URL, private keys are
 ontained from ssh agent (pagent on Windows).
+
+Status and Change History
+=========================
+
+This package is experimental.  It seems to work based on manual
+testing. I'm still trying to figure out how to write automated tests
+for this.
+
+0.3 (2007/03/22)
+----------------
+
+Added debug logging to help diagnose problems.
+
+Close transports after use to prevent leakage.
+
+0.2.2
+-----
+
+Fixed a bug in handling multiple host keys for a given host.
+
+0.2.1
+-----
+
+Fixed a bug in handling multiple user keys.
+
+0.2
+---
+
+Added missing entry point.  
+
+Adjusted content-type information to work with setuptools.
+
+0.1
+---
+
+Initial release

Modified: zc.buildoutsftp/branches/dev/setup.py
===================================================================
--- zc.buildoutsftp/branches/dev/setup.py	2007-03-22 15:52:53 UTC (rev 73458)
+++ zc.buildoutsftp/branches/dev/setup.py	2007-03-22 15:58:08 UTC (rev 73459)
@@ -3,16 +3,11 @@
 name='zc.buildoutsftp'
 setup(
     name=name,
-    version = "0.2.2",
+    version = "0.3",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
-    description =
-    "Specialized zc.buildout plugin to add sftp support.",
-    long_description = (
-        open('README.txt').read()
-        + '\n' + 
-        open('CHANGES.txt').read()
-        ),
+    description = "Specialized zc.buildout plugin to add sftp support.",
+    long_description = open('README.txt').read(),
     license = "ZPL 2.1",
     keywords = "buildout",
     url='http://www.python.org/pypi/'+name,



More information about the Checkins mailing list