[Checkins] SVN: Sandbox/ctheune/zodbupgrade/ Release metadata cleanup, documentation wording.

Christian Theune ct at gocept.com
Mon Jun 8 03:30:41 EDT 2009


Log message for revision 100730:
  Release metadata cleanup, documentation wording.
  

Changed:
  U   Sandbox/ctheune/zodbupgrade/CHANGES.txt
  U   Sandbox/ctheune/zodbupgrade/README.txt
  U   Sandbox/ctheune/zodbupgrade/setup.py

-=-
Modified: Sandbox/ctheune/zodbupgrade/CHANGES.txt
===================================================================
--- Sandbox/ctheune/zodbupgrade/CHANGES.txt	2009-06-08 07:00:31 UTC (rev 100729)
+++ Sandbox/ctheune/zodbupgrade/CHANGES.txt	2009-06-08 07:30:41 UTC (rev 100730)
@@ -1,7 +1,7 @@
 Changes
 =======
 
-0.1 (unreleased)
+0.1 (2009-06-08)
 ----------------
 
 - First release.

Modified: Sandbox/ctheune/zodbupgrade/README.txt
===================================================================
--- Sandbox/ctheune/zodbupgrade/README.txt	2009-06-08 07:00:31 UTC (rev 100729)
+++ Sandbox/ctheune/zodbupgrade/README.txt	2009-06-08 07:30:41 UTC (rev 100730)
@@ -1,19 +1,19 @@
-==================================================================
-zodbupgrade - Upgrade an existing databases to match your software
-==================================================================
+===============================================================
+zodbupgrade - Upgrade existing databases to match your software
+===============================================================
 
 This package provides a tool that automatically identifies and updates
 references from persistent objects to classes that are in the process of being
 moved from one module to another and/or being renamed.
 
 If a class is being moved or renamed, you need to update all references from
-your database to this name before finally deleting the old code.
+your database to the new name before finally deleting the old code.
 
 This tool looks through all current objects of your database, identifies
 moved/renamed classes and `touches` objects accordingly. It creates a single
 transaction that contains the update of your database.
 
-Having run this tool, you are then able to delete the old code.
+Having run this tool, you are then free to delete the old code.
 
 Usage
 =====

Modified: Sandbox/ctheune/zodbupgrade/setup.py
===================================================================
--- Sandbox/ctheune/zodbupgrade/setup.py	2009-06-08 07:00:31 UTC (rev 100729)
+++ Sandbox/ctheune/zodbupgrade/setup.py	2009-06-08 07:30:41 UTC (rev 100730)
@@ -14,10 +14,13 @@
 
 from setuptools import setup, find_packages
 
+read = lambda x:open(x).read()
 
 setup(name='zodbupgrade',
       author='Zope Developers',
       author_email='zodb-dev at zope.org',
+      url='http://www.python.org/pypi/zodbupgrade',
+      license='ZPL 2.1',
       description=
         'Update ZODB class references for moved or renamed classes.',
       long_description=(



More information about the Checkins mailing list