You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/02/12 14:41:05 UTC

svn commit: r1445167 - in /commons/proper/cli/trunk: RELEASE-NOTES.txt src/site/xdoc/release_1_3.xml

Author: tn
Date: Tue Feb 12 13:41:04 2013
New Revision: 1445167

URL: http://svn.apache.org/r1445167
Log:
Re-organize new features to reflect significance.

Modified:
    commons/proper/cli/trunk/RELEASE-NOTES.txt
    commons/proper/cli/trunk/src/site/xdoc/release_1_3.xml

Modified: commons/proper/cli/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/RELEASE-NOTES.txt?rev=1445167&r1=1445166&r2=1445167&view=diff
==============================================================================
--- commons/proper/cli/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/cli/trunk/RELEASE-NOTES.txt Tue Feb 12 13:41:04 2013
@@ -19,20 +19,20 @@ More information can be found on the pro
 
 NEW FEATURES:
 
-  * Added new fluent API to create Option instances via builder class Option.Builder.
-    This replaces the now deprecated OptionBuilder. Thanks to Duncan Jones, Brian Blount. (CLI-224)
-
-  * Added new method Options.addOption(String, String). Thanks to Alexandru Mocanu. (CLI-214)
-  
   * A new parser is available: DefaultParser. It combines the features of the GnuParser and the PosixParser.
     It also provides additional features like partial matching for the long options, and long options without
     separator (i.e like the JVM memory settings: -Xmx512m). This new parser deprecates the previous ones.
     (CLI-161, CLI-167, CLI-181)
 
+  * Added new fluent API to create Option instances via builder class Option.Builder.
+    This replaces the now deprecated OptionBuilder. Thanks to Duncan Jones, Brian Blount. (CLI-224)
+
   * PosixParser now supports partial long options (--ver instead of --version). (CLI-160) 
 
   * HelpFormatter now supports setting the displayed separator of long options. Thanks to J. Lewis Muir. (CLI-169) 
 
+  * Added new method Options.addOption(String, String). Thanks to Alexandru Mocanu. (CLI-214)
+  
 
 BUG FIXES:
 

Modified: commons/proper/cli/trunk/src/site/xdoc/release_1_3.xml
URL: http://svn.apache.org/viewvc/commons/proper/cli/trunk/src/site/xdoc/release_1_3.xml?rev=1445167&r1=1445166&r2=1445167&view=diff
==============================================================================
--- commons/proper/cli/trunk/src/site/xdoc/release_1_3.xml (original)
+++ commons/proper/cli/trunk/src/site/xdoc/release_1_3.xml Tue Feb 12 13:41:04 2013
@@ -41,20 +41,20 @@ More information can be found on the pro
 
 NEW FEATURES:
 
-  * Added new fluent API to create Option instances via builder class Option.Builder.
-    This replaces the now deprecated OptionBuilder. Thanks to Duncan Jones, Brian Blount. (CLI-224)
-
-  * Added new method Options.addOption(String, String). Thanks to Alexandru Mocanu. (CLI-214)
-  
   * A new parser is available: DefaultParser. It combines the features of the GnuParser and the PosixParser.
     It also provides additional features like partial matching for the long options, and long options without
     separator (i.e like the JVM memory settings: -Xmx512m). This new parser deprecates the previous ones.
     (CLI-161, CLI-167, CLI-181)
 
+  * Added new fluent API to create Option instances via builder class Option.Builder.
+    This replaces the now deprecated OptionBuilder. Thanks to Duncan Jones, Brian Blount. (CLI-224)
+
   * PosixParser now supports partial long options (--ver instead of --version). (CLI-160) 
 
   * HelpFormatter now supports setting the displayed separator of long options. Thanks to J. Lewis Muir. (CLI-169) 
 
+  * Added new method Options.addOption(String, String). Thanks to Alexandru Mocanu. (CLI-214)
+
 
 BUG FIXES: