You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2017/03/12 01:58:28 UTC

[01/11] [text] Updating versions for Commons Text release 1.0

Repository: commons-text
Updated Branches:
  refs/heads/master 2d522713c -> 9c6198b31


Updating versions for Commons Text release 1.0


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/09170afe
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/09170afe
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/09170afe

Branch: refs/heads/master
Commit: 09170afea98028cf4e0fce9c368cd4ca6a5ea9d7
Parents: 2d52271
Author: Rob Tompkins <ch...@apache.org>
Authored: Fri Mar 3 20:07:40 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Fri Mar 3 20:07:40 2017 -0500

----------------------------------------------------------------------
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/09170afe/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4b08b4b..3e4a0a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>commons-text</artifactId>
-  <version>1.0-SNAPSHOT</version>
+  <version>1.0</version>
   <name>Apache Commons Text</name>
 
   <inceptionYear>2014</inceptionYear>
@@ -124,8 +124,8 @@
 
     <commons.componentid>text</commons.componentid>
 
-    <commons.release.version>1.0-beta-1</commons.release.version>
-    <commons.rc.version>RC4</commons.rc.version>
+    <commons.release.version>1.0</commons.release.version>
+    <commons.rc.version>RC1</commons.rc.version>
     <commons.release.desc>(Java 7+)</commons.release.desc>
 
     <commons.jira.id>TEXT</commons.jira.id>


[03/11] [text] Update change log description to include package name change

Posted by ch...@apache.org.
Update change log description to include package name change


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/85a247bd
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/85a247bd
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/85a247bd

Branch: refs/heads/master
Commit: 85a247bddd88b3db924b889343d8e2ad88482db5
Parents: d298623
Author: Rob Tompkins <ch...@apache.org>
Authored: Fri Mar 3 20:27:14 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Fri Mar 3 20:27:14 2017 -0500

----------------------------------------------------------------------
 src/changes/changes.xml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/85a247bd/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 42ff818..b4ca129 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -45,10 +45,13 @@ The <action> type attribute can be add,update,fix,remove.
   </properties>
   <body>
 
-  <release version="TBA" date="TBA" description="
-  
+  <release version="1.0" date="2017-03-04" description="
+
    Incompatible changes
    ====================
+   All package names changed from org.apache.commons.text.beta in 1.0-beta-1 to
+   org.apache.commons.text in 1.0.
+
    Methods StringEscapeUtils#escapeHtml3Once and StringEscapeUtils#escapeHtml4Once
    have been removed; see TEXT-40
   ">


[11/11] [text] (doc) release-history updates

Posted by ch...@apache.org.
(doc) release-history updates


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/9c6198b3
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/9c6198b3
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/9c6198b3

Branch: refs/heads/master
Commit: 9c6198b31bda7d8389d9d9f3e80add989a42c6a5
Parents: d8bcaf2
Author: Rob Tompkins <ch...@apache.org>
Authored: Sat Mar 11 20:58:20 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Sat Mar 11 20:58:20 2017 -0500

----------------------------------------------------------------------
 .../release-notes/RELEASE-NOTES-1.0.txt         | 149 +++++++++++++++++++
 src/site/xdoc/release-history.xml               |   3 +
 2 files changed, 152 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/9c6198b3/src/site/resources/release-notes/RELEASE-NOTES-1.0.txt
----------------------------------------------------------------------
diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.0.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.0.txt
new file mode 100644
index 0000000..9e7e47e
--- /dev/null
+++ b/src/site/resources/release-notes/RELEASE-NOTES-1.0.txt
@@ -0,0 +1,149 @@
+                          Apache Commons Text
+                              Version 1.0
+                             Release Notes
+
+
+INTRODUCTION
+============
+
+This document contains the release notes for the 1.0-beta-1 version of Apache
+Commons Text. Commons Text is a set of utility functions and reusable components
+for the purpose of processing and manipulating text that should be of use in a
+Java environment.
+
+Apache Commons Text is a library focused on algorithms working on strings.
+
+
+INCOMPATIBLE CHANGES
+====================
+
+All package names changed from org.apache.commons.text.beta in 1.0-beta-1 to
+org.apache.commons.text in 1.0.
+
+Methods StringEscapeUtils#escapeHtml3Once and StringEscapeUtils#escapeHtml4Once
+have been removed; see TEXT-40
+
+JAVA 9 SUPPORT
+==============
+
+At our time of release of 1.0, our build succeeds with Java 9-ea build 158,
+and we believe all of our features to be Java 9 compatible. However, when we run
+"mvn clean site" we have failures.
+
+FIXED BUGS
+==========
+
+o TEXT-64:   Investigate locale issue in ExtendedMessageFormatTest. Thanks to
+             chtompki.
+o TEXT-69:   Resolve PMD/CMD Violations
+o TEXT-65:   Fixing the 200 checkstyle errors present in 1.0-beta-1.
+o TEXT-63:   Mutable fields should be private.
+
+REMOVED
+=======
+
+o TEXT-40:   Escape HTML characters only once: revert.
+
+
+
+                        Release Notes for version 1.0-beta-1
+
+
+A NOTE ON THE HISTORY OF THE CODE
+=================================
+
+The codebase began in the fall of 2014 as a location for housing algorithms for
+operating on Strings that seemed to have a more complex nature than those which
+would be considered a needed extension to java.lang. Thus, a new component,
+different from Apache Commons Lang was warranted. As the project evolved, it was
+noticed that Commons Lang had considerable more text manipulation tools than
+the average Java application developer would need or even want. So, we have
+decided to move the more esoteric String processing algorithms out of Commons
+Lang into Commons Text.
+
+JAVA 9 SUPPORT
+==============
+
+At our time of release of 1.0-beta-1, our build succeeds with Java 9-ea build 153,
+and we believe all of our features to be Java 9 compatible.
+
+NEW FEATURES
+============
+
+o TEXT-56:   Move CvsTranslators out of StringEscapeUtils and make them DRY
+             Thanks to Jarek Strzeleck.
+o TEXT-40:   Escape HTML characters only once Thanks to Sampanna Kahu.
+o TEXT-32:   Add LCS similarity and distance
+o TEXT-34:   Add class to generate random strings
+o TEXT-29:   Add a builder to StringEscapeUtils
+o TEXT-28:   Add shell/XSI escape/unescape support
+o TEXT-2:    Add Jaccard Index and Jaccard Distance Thanks to Don Jeba.
+o TEXT-27:   Move org.apache.commons.lang3.StringEscapeUtils.java into text
+o TEXT-23:   Moving from commons-lang, the package org.apache.commons.lang3.text
+o TEXT-10:   A more complex Levenshtein distance Thanks to Don Jeba.
+o TEXT-24:   Add coveralls and Travis.ci integration
+o TEXT-19:   Add alphabet converter Thanks to Eyal Allweil.
+o TEXT-13:   Create Commons Text logo
+o TEXT-7:    Write user guide
+o TEXT-15:   Human name parser
+o TEXT-3:    Add Cosine Similarity and Cosine Distance
+o TEXT-4:    Port Myers algorithm from [collections]
+o TEXT-1:    Add Hamming distance
+o TEXT-9:    Incorporate String algorithms from Commons Lang Thanks to britter.
+
+FIXED BUGS
+==========
+
+Note. We recognize the curiosity of a new component having "fixed bugs," but a
+considerable number of files were migrated over from Commons Lang, some of which
+needed fixes.
+
+o TEXT-62:   Incorporate suggestions from RC2 into 1.0 release.
+o TEXT-60:   Upgrading Jacoco for Java 9-ea compatibility. Thanks to Lee Adcock.
+o TEXT-52:   Possible attacks through StringEscapeUtils.escapeEcmaScrip better
+             javadoc
+o TEXT-37:   Global vs local source of randomness
+o TEXT-38:   Fluent API in "RandomStringBuilder"
+o TEXT-26:   Fix JaroWinklerDistance in the manner of LUCENE-1297
+o TEXT-35:   Unfinished class Javadoc for CosineDistance
+o TEXT-22:   LevenshteinDistance reduce memory consumption
+o TEXT-5:    IP clearance for the names package
+o TEXT-11:   Work on the string metric, distance, and similarity definitions for
+             the project
+o TEXT-12:   Create StringDistanceFrom class that contains a StringMetric and
+             the "left" side string. This would have a method that accepts the
+             "right" side string to test. Thanks to Jonathan baker.
+o TEXT-8:    Change (R) StringMetric.compare(CS left, CS right) to "apply" so
+             that it is consistent with BiFunction. Thanks to Jonathan Baker.
+o TEXT-6:    Allow extra information (e.g. Levenshtein threshold) to be stored
+             as (final) fields in the StringMetric instance. Thanks to Jonathan
+             Baker.
+
+CHANGES
+=======
+
+o TEXT-61:   Naming packages org.apache.commons.text.beta Thanks to Lee Adcock.
+o TEXT-58:   Refactor EntityArrays to have unmodifiableMaps in leu of String[][]
+o TEXT-53:   Prepare site for 1.0 release
+o TEXT-50:   Upgrade from commons-parent version 41 to version 42
+o TEXT-33:   Consolidating since tags at 1.0, removing deprecated methods
+o TEXT-16:   Improve HumanNameParser
+
+REMOVED
+=======
+
+o TEXT-55:   Remove WordUtils to be added back in an upcoming 1.X release
+o TEXT-51:   Remove RandomStringGenerator to be added back in the 1.1 release
+o TEXT-31:   Remove org.apache.commons.text.names, for later release than 1.0
+
+
+Historical list of changes: http://commons.apache.org/text/changes-report.html
+
+For complete information on Apache Commons Text, including instructions on how
+to submit bug reports, patches, or suggestions for improvement, see the Apache
+Apache Commons Text website:
+
+http://commons.apache.org/text/
+
+Have fun!
+-Apache Commons Text team
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/commons-text/blob/9c6198b3/src/site/xdoc/release-history.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/release-history.xml b/src/site/xdoc/release-history.xml
index 9e94c77..bdc348c 100644
--- a/src/site/xdoc/release-history.xml
+++ b/src/site/xdoc/release-history.xml
@@ -29,6 +29,9 @@ limitations under the License.
 <table>
 <tr><th>Version</th><th>Release date</th><th>Required Java Version</th><th>Javadoc</th><th>Release notes</th></tr>
 <tr>
+  <td>1.0</td><td>3-11-2017</td><td>7.0</td><td><a href="javadocs/api-1.0/">api-1.0</a></td><td><a href="release-notes/RELEASE-NOTES-1.0.txt">release notes for 1.0</a></td>
+</tr>
+<tr>
   <td>1.0-beta-1</td><td>2-9-2017</td><td>7.0</td><td><a href="javadocs/api-1.0-beta-1/">api-1.0-beta-1</a></td><td><a href="release-notes/RELEASE-NOTES-1.0-beta-1.txt">release notes for 1.0-beta-1</a></td>
 </tr>
 </table>


[08/11] [text] Release Commons Text 1.0 based on RC1, upversion to 1.1-SNAPSHOT

Posted by ch...@apache.org.
Release Commons Text 1.0 based on RC1, upversion to 1.1-SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/bc1c3ef0
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/bc1c3ef0
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/bc1c3ef0

Branch: refs/heads/master
Commit: bc1c3ef0b0ea180f57ecb0b9ff0f692411bce589
Parents: e38039a
Author: Rob Tompkins <ch...@apache.org>
Authored: Sat Mar 11 20:21:18 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Sat Mar 11 20:22:22 2017 -0500

----------------------------------------------------------------------
 pom.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/bc1c3ef0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3e4a0a1..fdc4c87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>commons-text</artifactId>
-  <version>1.0</version>
+  <version>1.1-SNAPSHOT</version>
   <name>Apache Commons Text</name>
 
   <inceptionYear>2014</inceptionYear>
@@ -125,7 +125,6 @@
     <commons.componentid>text</commons.componentid>
 
     <commons.release.version>1.0</commons.release.version>
-    <commons.rc.version>RC1</commons.rc.version>
     <commons.release.desc>(Java 7+)</commons.release.desc>
 
     <commons.jira.id>TEXT</commons.jira.id>


[09/11] [text] (chore) rat update to appear like lang

Posted by ch...@apache.org.
(chore) rat update to appear like lang


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/9abc51b4
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/9abc51b4
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/9abc51b4

Branch: refs/heads/master
Commit: 9abc51b4510b58965901482f52b825b8f294e889
Parents: bc1c3ef
Author: Rob Tompkins <ch...@apache.org>
Authored: Sat Mar 11 20:27:18 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Sat Mar 11 20:27:18 2017 -0500

----------------------------------------------------------------------
 pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/9abc51b4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index fdc4c87..31292fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -153,6 +153,7 @@
               <exclude>site-content/**</exclude>
               <exclude>src/site/resources/download_lang.cgi</exclude>
               <exclude>src/test/resources/stringEscapeUtilsTestData.txt</exclude>
+              <exclude>src/site/resources/release-notes/RELEASE-NOTES-*.txt</exclude>
             </excludes>
           </configuration>
         </plugin>


[02/11] [text] Updated download page in preparation for 1.0 release

Posted by ch...@apache.org.
Updated download page in preparation for 1.0 release


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/d298623c
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/d298623c
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/d298623c

Branch: refs/heads/master
Commit: d298623ccb74440b80abb7851c813a81cb1161cb
Parents: 09170af
Author: Rob Tompkins <ch...@apache.org>
Authored: Fri Mar 3 20:09:06 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Fri Mar 3 20:09:06 2017 -0500

----------------------------------------------------------------------
 src/site/xdoc/download_text.xml | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/d298623c/src/site/xdoc/download_text.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/download_text.xml b/src/site/xdoc/download_text.xml
index 0fbd2f5..1073a1f 100644
--- a/src/site/xdoc/download_text.xml
+++ b/src/site/xdoc/download_text.xml
@@ -111,32 +111,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons Text 1.0-beta-1 (Java 7+)">
+    <section name="Apache Commons Text 1.0 (Java 7+)">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/text/binaries/commons-text-1.0-beta-1-bin.tar.gz">commons-text-1.0-beta-1-bin.tar.gz</a></td>
-              <td><a href="https://www.apache.org/dist/commons/text/binaries/commons-text-1.0-beta-1-bin.tar.gz.md5">md5</a></td>
-              <td><a href="https://www.apache.org/dist/commons/text/binaries/commons-text-1.0-beta-1-bin.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/text/binaries/commons-text-1.0-bin.tar.gz">commons-text-1.0-bin.tar.gz</a></td>
+              <td><a href="https://www.apache.org/dist/commons/text/binaries/commons-text-1.0-bin.tar.gz.md5">md5</a></td>
+              <td><a href="https://www.apache.org/dist/commons/text/binaries/commons-text-1.0-bin.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/text/binaries/commons-text-1.0-beta-1-bin.zip">commons-text-1.0-beta-1-bin.zip</a></td>
-              <td><a href="https://www.apache.org/dist/commons/text/binaries/commons-text-1.0-beta-1-bin.zip.md5">md5</a></td>
-              <td><a href="https://www.apache.org/dist/commons/text/binaries/commons-text-1.0-beta-1-bin.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/text/binaries/commons-text-1.0-bin.zip">commons-text-1.0-bin.zip</a></td>
+              <td><a href="https://www.apache.org/dist/commons/text/binaries/commons-text-1.0-bin.zip.md5">md5</a></td>
+              <td><a href="https://www.apache.org/dist/commons/text/binaries/commons-text-1.0-bin.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/text/source/commons-text-1.0-beta-1-src.tar.gz">commons-text-1.0-beta-1-src.tar.gz</a></td>
-              <td><a href="https://www.apache.org/dist/commons/text/source/commons-text-1.0-beta-1-src.tar.gz.md5">md5</a></td>
-              <td><a href="https://www.apache.org/dist/commons/text/source/commons-text-1.0-beta-1-src.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/text/source/commons-text-1.0-src.tar.gz">commons-text-1.0-src.tar.gz</a></td>
+              <td><a href="https://www.apache.org/dist/commons/text/source/commons-text-1.0-src.tar.gz.md5">md5</a></td>
+              <td><a href="https://www.apache.org/dist/commons/text/source/commons-text-1.0-src.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/text/source/commons-text-1.0-beta-1-src.zip">commons-text-1.0-beta-1-src.zip</a></td>
-              <td><a href="https://www.apache.org/dist/commons/text/source/commons-text-1.0-beta-1-src.zip.md5">md5</a></td>
-              <td><a href="https://www.apache.org/dist/commons/text/source/commons-text-1.0-beta-1-src.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/text/source/commons-text-1.0-src.zip">commons-text-1.0-src.zip</a></td>
+              <td><a href="https://www.apache.org/dist/commons/text/source/commons-text-1.0-src.zip.md5">md5</a></td>
+              <td><a href="https://www.apache.org/dist/commons/text/source/commons-text-1.0-src.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>


[07/11] [text] Updated mail-lists.xml in preparation for 1.0 release

Posted by ch...@apache.org.
Updated mail-lists.xml in preparation for 1.0 release


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/e38039a3
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/e38039a3
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/e38039a3

Branch: refs/heads/master
Commit: e38039a3da2244741f5d33ab1b05bdee51c53c3e
Parents: 77ee69f
Author: Rob Tompkins <ch...@apache.org>
Authored: Sat Mar 4 23:03:18 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Sat Mar 4 23:03:18 2017 -0500

----------------------------------------------------------------------
 src/site/xdoc/mail-lists.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/e38039a3/src/site/xdoc/mail-lists.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/mail-lists.xml b/src/site/xdoc/mail-lists.xml
index dace01d..510a8bc 100644
--- a/src/site/xdoc/mail-lists.xml
+++ b/src/site/xdoc/mail-lists.xml
@@ -42,7 +42,7 @@ limitations under the License.
 <document>
   <properties>
     <title>Apache Commons Text Mailing Lists</title>
-    <author email="dev@commons.apache.org">Commons Documentation Team</author>
+    <author email="dev@commons.apache.org">Apache Commons Documentation Team</author>
   </properties>
   <body>
 


[05/11] [text] Updated README.md in preparation for 1.0 release

Posted by ch...@apache.org.
Updated README.md in preparation for 1.0 release


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/a22f4aa6
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/a22f4aa6
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/a22f4aa6

Branch: refs/heads/master
Commit: a22f4aa6116f771dd125a71f3117d1a3d23cfe18
Parents: bfdd0aa
Author: Rob Tompkins <ch...@apache.org>
Authored: Sat Mar 4 22:59:35 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Sat Mar 4 22:59:35 2017 -0500

----------------------------------------------------------------------
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/a22f4aa6/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index efec318..ef228e8 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-text</artifactId>
-  <version>1.0-beta-1</version>
+  <version>1.0</version>
 </dependency>
 ```
 


[10/11] [text] (doc) fix RC1 typographical error in RELEASE-NOTES.txt

Posted by ch...@apache.org.
(doc) fix RC1 typographical error in RELEASE-NOTES.txt


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/d8bcaf20
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/d8bcaf20
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/d8bcaf20

Branch: refs/heads/master
Commit: d8bcaf201769cc3054460722e768f46619152662
Parents: 9abc51b
Author: Rob Tompkins <ch...@apache.org>
Authored: Sat Mar 11 20:28:02 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Sat Mar 11 20:28:02 2017 -0500

----------------------------------------------------------------------
 RELEASE-NOTES.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/d8bcaf20/RELEASE-NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 5964146..9e7e47e 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -26,7 +26,7 @@ have been removed; see TEXT-40
 JAVA 9 SUPPORT
 ==============
 
-At our time of release of 1.0-beta-1, our build succeeds with Java 9-ea build 158,
+At our time of release of 1.0, our build succeeds with Java 9-ea build 158,
 and we believe all of our features to be Java 9 compatible. However, when we run
 "mvn clean site" we have failures.
 


[04/11] [text] Updated RELEASE-NOTES.txt in preparation for 1.0 release

Posted by ch...@apache.org.
Updated RELEASE-NOTES.txt in preparation for 1.0 release


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/bfdd0aa8
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/bfdd0aa8
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/bfdd0aa8

Branch: refs/heads/master
Commit: bfdd0aa8f794cfcecfd07aa9e506412ba914375a
Parents: 85a247b
Author: Rob Tompkins <ch...@apache.org>
Authored: Sat Mar 4 22:54:52 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Sat Mar 4 22:54:52 2017 -0500

----------------------------------------------------------------------
 RELEASE-NOTES.txt | 42 +++++++++++++++++++++++++++++++++++++++---
 1 file changed, 39 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/bfdd0aa8/RELEASE-NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 56769a8..5964146 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,5 +1,5 @@
                           Apache Commons Text
-                           Version 1.0-beta-1
+                              Version 1.0
                              Release Notes
 
 
@@ -13,6 +13,42 @@ Java environment.
 
 Apache Commons Text is a library focused on algorithms working on strings.
 
+
+INCOMPATIBLE CHANGES
+====================
+
+All package names changed from org.apache.commons.text.beta in 1.0-beta-1 to
+org.apache.commons.text in 1.0.
+
+Methods StringEscapeUtils#escapeHtml3Once and StringEscapeUtils#escapeHtml4Once
+have been removed; see TEXT-40
+
+JAVA 9 SUPPORT
+==============
+
+At our time of release of 1.0-beta-1, our build succeeds with Java 9-ea build 158,
+and we believe all of our features to be Java 9 compatible. However, when we run
+"mvn clean site" we have failures.
+
+FIXED BUGS
+==========
+
+o TEXT-64:   Investigate locale issue in ExtendedMessageFormatTest. Thanks to
+             chtompki.
+o TEXT-69:   Resolve PMD/CMD Violations
+o TEXT-65:   Fixing the 200 checkstyle errors present in 1.0-beta-1.
+o TEXT-63:   Mutable fields should be private.
+
+REMOVED
+=======
+
+o TEXT-40:   Escape HTML characters only once: revert.
+
+
+
+                        Release Notes for version 1.0-beta-1
+
+
 A NOTE ON THE HISTORY OF THE CODE
 =================================
 
@@ -28,8 +64,8 @@ Lang into Commons Text.
 JAVA 9 SUPPORT
 ==============
 
-At our time of release our build succeeds with Java 9-ea build 153, and we
-believe all of our features to be Java 9 compatible.
+At our time of release of 1.0-beta-1, our build succeeds with Java 9-ea build 153,
+and we believe all of our features to be Java 9 compatible.
 
 NEW FEATURES
 ============


[06/11] [text] Updated issue-tracking.xml in preparation for 1.0 release

Posted by ch...@apache.org.
Updated issue-tracking.xml in preparation for 1.0 release


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/77ee69fd
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/77ee69fd
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/77ee69fd

Branch: refs/heads/master
Commit: 77ee69fdab01b1586801e506504c592b4f4acc46
Parents: a22f4aa
Author: Rob Tompkins <ch...@apache.org>
Authored: Sat Mar 4 23:02:30 2017 -0500
Committer: Rob Tompkins <ch...@apache.org>
Committed: Sat Mar 4 23:02:30 2017 -0500

----------------------------------------------------------------------
 src/site/xdoc/issue-tracking.xml | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/77ee69fd/src/site/xdoc/issue-tracking.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/issue-tracking.xml b/src/site/xdoc/issue-tracking.xml
index 4e9748b..fc8fc38 100644
--- a/src/site/xdoc/issue-tracking.xml
+++ b/src/site/xdoc/issue-tracking.xml
@@ -44,20 +44,20 @@ limitations under the License.
 <document>
   <properties>
     <title>Apache Commons Text Issue tracking</title>
-    <author email="dev@commons.apache.org">Commons Documentation Team</author>
+    <author email="dev@commons.apache.org">Apache Commons Documentation Team</author>
   </properties>
   <body>
 
     <section name="Apache Commons Text Issue tracking">
       <p>
-      Apache Commons Text uses <a href="http://issues.apache.org/jira/">ASF JIRA</a> for tracking issues.
-      See the <a href="http://issues.apache.org/jira/browse/TEXT">Apache Commons Text JIRA project page</a>.
+      Apache Commons Text uses <a href="https://issues.apache.org/jira/">ASF JIRA</a> for tracking issues.
+      See the <a href="https://issues.apache.org/jira/browse/TEXT">Apache Commons Text JIRA project page</a>.
       </p>
 
       <p>
-      To use JIRA you may need to <a href="http://issues.apache.org/jira/secure/Signup!default.jspa">create an account</a>
+      To use JIRA you may need to <a href="https://issues.apache.org/jira/secure/Signup!default.jspa">create an account</a>
       (if you have previously created/updated Commons issues using Bugzilla an account will have been automatically
-      created and you can use the <a href="http://issues.apache.org/jira/secure/ForgotPassword!default.jspa">Forgot Password</a>
+      created and you can use the <a href="https://issues.apache.org/jira/secure/ForgotPassword!default.jspa">Forgot Password</a>
       page to get a new password).
       </p>
 
@@ -65,13 +65,13 @@ limitations under the License.
       If you would like to report a bug, or raise an enhancement request with
       Apache Commons Text please do the following:
       <ol>
-        <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12318221&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=1&amp;status=3&amp;status=4">Search existing open bugs</a>.
+        <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12318221&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=1&amp;status=3&amp;status=4">Search existing open bugs</a>.
             If you find your issue listed then please add a comment with your details.</li>
         <li><a href="mail-lists.html">Search the mailing list archive(s)</a>.
             You may find your issue or idea has already been discussed.</li>
         <li>Decide if your issue is a bug or an enhancement.</li>
-        <li>Submit either a <a href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12318221&amp;issuetype=1&amp;priority=4&amp;assignee=-1">bug report</a>
-            or <a href="http://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12318221&amp;issuetype=4&amp;priority=4&amp;assignee=-1">enhancement request</a>.</li>
+        <li>Submit either a <a href="https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12318221&amp;issuetype=1&amp;priority=4&amp;assignee=-1">bug report</a>
+            or <a href="https://issues.apache.org/jira/secure/CreateIssueDetails!init.jspa?pid=12318221&amp;issuetype=4&amp;priority=4&amp;assignee=-1">enhancement request</a>.</li>
       </ol>
       </p>
 
@@ -92,9 +92,9 @@ limitations under the License.
       <p>
       You may also find these links useful:
       <ul>
-        <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12318221&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=1&amp;status=3&amp;status=4">All Open Apache Commons Text bugs</a></li>
-        <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12318221&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=5&amp;status=6">All Resolved Apache Commons Text bugs</a></li>
-        <li><a href="http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12318221&amp;sorter/field=issuekey&amp;sorter/order=DESC">All Apache Commons Text bugs</a></li>
+        <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12318221&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=1&amp;status=3&amp;status=4">All Open Apache Commons Text bugs</a></li>
+        <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12318221&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;status=5&amp;status=6">All Resolved Apache Commons Text bugs</a></li>
+        <li><a href="https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&amp;pid=12318221&amp;sorter/field=issuekey&amp;sorter/order=DESC">All Apache Commons Text bugs</a></li>
       </ul>
       </p>
     </section>