You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ra...@apache.org on 2008/12/24 18:52:36 UTC

svn commit: r729342 - /commons/proper/digester/trunk/RELEASE-NOTES.txt

Author: rahul
Date: Wed Dec 24 09:52:36 2008
New Revision: 729342

URL: http://svn.apache.org/viewvc?rev=729342&view=rev
Log:
Editorial changes.

Modified:
    commons/proper/digester/trunk/RELEASE-NOTES.txt

Modified: commons/proper/digester/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/RELEASE-NOTES.txt?rev=729342&r1=729341&r2=729342&view=diff
==============================================================================
--- commons/proper/digester/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/digester/trunk/RELEASE-NOTES.txt Wed Dec 24 09:52:36 2008
@@ -22,8 +22,6 @@
                                Release Notes
 
 
-** Current as of Dec 23, 2008 (these are 2.0 notes, update for next release)
-
 INTRODUCTION
 ============
 
@@ -43,14 +41,13 @@
 
  * This release eliminates all dependencies on Commons Collections classes.
    Previously, ArrayStack was used in the Digester implementation and was
-   exposed via protected fields in the following classes:
+   exposed via protected fields or inner classes of the following classes:
      org.apache.commons.digester.Digester,
-     org.apache.commons.digester.CallParamRule,
-     org.apache.commons.digester.FactoryCreateRule and
+     org.apache.commons.digester.CallParamRule, and
      org.apache.commons.digester.xmlrules.DigesterRuleParser
    These classes now use java.util.Stack instead. Any subclasses of the above
-   will require appropriate migration to using java.util.Stack for use with
-   version 2.0.
+   using protected ArrayStack members will require appropriate migration to
+   use java.util.Stack instead before they can be used with version 2.0.
 
 OTHER IMPORTANT CHANGES: