[Checkins] SVN: zope.exceptions/trunk/ Release engineering.

Tres Seaver tseaver at palladion.com
Tue Apr 4 12:08:17 EDT 2006


Log message for revision 66400:
  Release engineering.

Changed:
  A   zope.exceptions/trunk/CHANGES.txt
  U   zope.exceptions/trunk/INSTALL.txt
  A   zope.exceptions/trunk/README.txt
  U   zope.exceptions/trunk/setup.py

-=-
Added: zope.exceptions/trunk/CHANGES.txt
===================================================================
--- zope.exceptions/trunk/CHANGES.txt	2006-04-04 16:04:32 UTC (rev 66399)
+++ zope.exceptions/trunk/CHANGES.txt	2006-04-04 16:08:16 UTC (rev 66400)
@@ -0,0 +1,19 @@
+zope.exceptions Package Changelog
+=================================
+
+zope.exceptions version 3.2.0 (2006/01/05)
+------------------------------------------
+
+- Corresponds to the verison of the zope.exceptions package shipped as part of
+  the Zope 3.2.0 release.
+
+- Deprecated the 'INotFoundError' interface and the corresponding
+  'NotFoundError' exception class, in favor of "standard" exceptions
+  (AttributeError, KeyError).  The deprecated items will be removed in
+  Zope 3.3.
+
+zope.exceptions version 3.0.0 (2004/11/07)
+------------------------------------------
+
+- Corresponds to the verison of the zope.exceptions package shipped as part of
+  the Zope X3.0.0 release.


Property changes on: zope.exceptions/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.exceptions/trunk/INSTALL.txt
===================================================================
--- zope.exceptions/trunk/INSTALL.txt	2006-04-04 16:04:32 UTC (rev 66399)
+++ zope.exceptions/trunk/INSTALL.txt	2006-04-04 16:08:16 UTC (rev 66400)
@@ -52,7 +52,7 @@
 and have it install the "testing dependencies."  Today, the workaround
 is to install it manually:
 
-  $ /path/to/easy_install --find-links="...." zope-testing
+  $ /path/to/easy_install --find-links="...." zope.testing
 
 You can then run the tests (finally) from the checkout directory:
 
@@ -67,7 +67,7 @@
 
 You can also install it from a source distribution:
 
-  $ /path/to/easy_install --find-links="...." -eb src zope-exceptions
+  $ /path/to/easy_install --find-links="...." -eb src zope.exceptions
   $ cd src/zope.exceptions
   $ /path/to/your/python setup.py devel
 
@@ -78,6 +78,6 @@
 Install the package as a "binary egg" (which also installs its "hard"
 dependencies):
 
-  $ /path/to/easy_install --find-links="...." zope-exceptions
+  $ /path/to/easy_install --find-links="...." zope.exceptions
 
 

Added: zope.exceptions/trunk/README.txt
===================================================================
--- zope.exceptions/trunk/README.txt	2006-04-04 16:04:32 UTC (rev 66399)
+++ zope.exceptions/trunk/README.txt	2006-04-04 16:08:16 UTC (rev 66400)
@@ -0,0 +1,38 @@
+zope.exceptions Package Readme
+==============================
+
+Overview
+--------
+
+This package contains exception interfaces and implementations which are so
+general purpose that they don't belong in Zope application-specific packages.
+
+Changes
+-------
+
+See CHANGES.txt.
+
+Installation
+------------
+
+See INSTALL.txt.
+
+
+Developer Resources
+-------------------
+
+- Subversion browser:
+
+  http://svn.zope.org/zope.exceptions/
+
+- Read-only Subversion checkout:
+
+  $ svn co svn://svn.zope.org/repos/main/zope.exceptions/trunk
+
+- Writable Subversion checkout:
+
+  $ svn co svn://svn.zope.org/repos/main/zope.exceptions/trunk
+
+- Note that the 'src/zope/exceptions' package is acutally a 'svn:externals'
+  link to the corresponding package in the Zope3 trunk (or to a specific tag,
+  for released versions of the package).


Property changes on: zope.exceptions/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.exceptions/trunk/setup.py
===================================================================
--- zope.exceptions/trunk/setup.py	2006-04-04 16:04:32 UTC (rev 66399)
+++ zope.exceptions/trunk/setup.py	2006-04-04 16:08:16 UTC (rev 66400)
@@ -30,7 +30,10 @@
       description='exceptions',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description='',
+      long_description="This package contains exception interfaces "
+                       "and implementations which are so general purpose "
+                       "that they don't belong in a Zope application-specific "
+                       "package.",
       
       packages=['zope', 'zope.exceptions'],
       package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},



More information about the Checkins mailing list