[text] Update commons-csv from 1.1 to 1.4.

2016-11-06 Thread ggregory
Repository: commons-text
Updated Branches:
  refs/heads/master a0db3fa8f -> d3c3d3918


Update commons-csv from 1.1 to 1.4.

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

Branch: refs/heads/master
Commit: d3c3d3918f4fea6a4f512182825ac7aa9c89a5bc
Parents: a0db3fa
Author: Gary Gregory 
Authored: Sun Nov 6 13:23:23 2016 -0800
Committer: Gary Gregory 
Committed: Sun Nov 6 13:23:23 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/commons-text/blob/d3c3d391/pom.xml
--
diff --git a/pom.xml b/pom.xml
index e28eaeb..bac1edb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -98,7 +98,7 @@
 
   org.apache.commons
   commons-csv
-  1.1
+  1.4
   test
 
   



[1/3] [text] Add myself as a developer.

2016-11-06 Thread ggregory
Repository: commons-text
Updated Branches:
  refs/heads/master a0cf8337d -> a0db3fa8f


Add myself as a developer.

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

Branch: refs/heads/master
Commit: 3c6c14516f707f2946678c61004c7e73c53c2fea
Parents: a0cf833
Author: Gary Gregory 
Authored: Sun Nov 6 13:19:25 2016 -0800
Committer: Gary Gregory 
Committed: Sun Nov 6 13:19:25 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/commons-text/blob/3c6c1451/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 7d3ac36..11a9d8b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,6 +63,11 @@
   chtompki
   chtom...@apache.org
 
+
+  Gary Gregory
+  ggregory
+  ggreg...@apache.org
+
   
   
 



[3/3] [text] Use diamond notation.

2016-11-06 Thread ggregory
Use diamond notation.

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

Branch: refs/heads/master
Commit: a0db3fa8fa5ed0dfc84892334ac1ea13149ee620
Parents: 3fe8c73
Author: Gary Gregory 
Authored: Sun Nov 6 13:22:20 2016 -0800
Committer: Gary Gregory 
Committed: Sun Nov 6 13:22:20 2016 -0800

--
 .../java/org/apache/commons/text/diff/EditScript.java |  2 +-
 .../org/apache/commons/text/diff/ReplacementsFinder.java  |  4 ++--
 .../org/apache/commons/text/diff/StringsComparator.java   | 10 +-
 .../apache/commons/text/similarity/CosineSimilarity.java  |  2 +-
 .../java/org/apache/commons/text/similarity/Counter.java  |  2 +-
 .../apache/commons/text/similarity/RegexTokenizer.java|  2 +-
 .../apache/commons/text/diff/StringsComparatorTest.java   |  2 +-
 .../similarity/ParameterizedEditDistanceFromTest.java |  2 +-
 .../commons/text/similarity/StringMetricFromTest.java |  4 ++--
 9 files changed, 15 insertions(+), 15 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-text/blob/a0db3fa8/src/main/java/org/apache/commons/text/diff/EditScript.java
--
diff --git a/src/main/java/org/apache/commons/text/diff/EditScript.java 
b/src/main/java/org/apache/commons/text/diff/EditScript.java
index 7b1b74c..800f044 100644
--- a/src/main/java/org/apache/commons/text/diff/EditScript.java
+++ b/src/main/java/org/apache/commons/text/diff/EditScript.java
@@ -57,7 +57,7 @@ public class EditScript {
  * Simple constructor. Creates a new empty script.
  */
 public EditScript() {
-commands = new ArrayList();
+commands = new ArrayList<>();
 lcsLength = 0;
 modifications = 0;
 }

http://git-wip-us.apache.org/repos/asf/commons-text/blob/a0db3fa8/src/main/java/org/apache/commons/text/diff/ReplacementsFinder.java
--
diff --git a/src/main/java/org/apache/commons/text/diff/ReplacementsFinder.java 
b/src/main/java/org/apache/commons/text/diff/ReplacementsFinder.java
index ced87c2..02aff5f 100644
--- a/src/main/java/org/apache/commons/text/diff/ReplacementsFinder.java
+++ b/src/main/java/org/apache/commons/text/diff/ReplacementsFinder.java
@@ -73,8 +73,8 @@ public class ReplacementsFinder implements 
CommandVisitor {
  * @param handler  handler to call when synchronized sequences are found
  */
 public ReplacementsFinder(final ReplacementsHandler handler) {
-pendingInsertions = new ArrayList();
-pendingDeletions  = new ArrayList();
+pendingInsertions = new ArrayList<>();
+pendingDeletions  = new ArrayList<>();
 skipped   = 0;
 this.handler  = handler;
 }

http://git-wip-us.apache.org/repos/asf/commons-text/blob/a0db3fa8/src/main/java/org/apache/commons/text/diff/StringsComparator.java
--
diff --git a/src/main/java/org/apache/commons/text/diff/StringsComparator.java 
b/src/main/java/org/apache/commons/text/diff/StringsComparator.java
index 47613aa..ea736d2 100644
--- a/src/main/java/org/apache/commons/text/diff/StringsComparator.java
+++ b/src/main/java/org/apache/commons/text/diff/StringsComparator.java
@@ -108,7 +108,7 @@ public class StringsComparator {
  * sequences
  */
 public EditScript getScript() {
-final EditScript script = new EditScript();
+final EditScript script = new EditScript<>();
 buildScript(0, left.length(), 0, right.length(), script);
 return script;
 }
@@ -134,15 +134,15 @@ public class StringsComparator {
 int j = start2;
 while (i < end1 || j < end2) {
 if (i < end1 && j < end2 && left.charAt(i) == right.charAt(j)) 
{
-script.append(new KeepCommand(left.charAt(i)));
+script.append(new KeepCommand<>(left.charAt(i)));
 ++i;
 ++j;
 } else {
 if (end1 - start1 > end2 - start2) {
-script.append(new 
DeleteCommand(left.charAt(i)));
+script.append(new DeleteCommand<>(left.charAt(i)));
 ++i;
 } else {
-script.append(new 
InsertCommand(right.charAt(j)));
+script.append(new InsertCommand<>(right.charAt(j)));
 ++j;
 }
 }
@@ -154,7 +154,7 @@ public 

[2/3] [text] Update release description.

2016-11-06 Thread ggregory
Update release description.

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

Branch: refs/heads/master
Commit: 3fe8c73b527f741b3ce630ef725644ab0261d382
Parents: 3c6c145
Author: Gary Gregory 
Authored: Sun Nov 6 13:20:37 2016 -0800
Committer: Gary Gregory 
Committed: Sun Nov 6 13:20:37 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/commons-text/blob/3fe8c73b/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 11a9d8b..e28eaeb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -120,7 +120,7 @@
 text
 
 0.1
-(Java 6.0+)
+(Java 7+)
 
 TEXT
 12318221



[text] TEXT-24: adding pom.xml and changes.xml documentation

2016-11-06 Thread chtompki
Repository: commons-text
Updated Branches:
  refs/heads/master 07d296a47 -> a0cf8337d


TEXT-24: adding pom.xml and changes.xml documentation


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

Branch: refs/heads/master
Commit: a0cf8337d3bf3553de61a53f78c8ef8e11cce2b5
Parents: 07d296a
Author: Rob Tompkins 
Authored: Sun Nov 6 15:44:03 2016 -0500
Committer: Rob Tompkins 
Committed: Sun Nov 6 15:44:03 2016 -0500

--
 pom.xml | 5 +
 src/changes/changes.xml | 1 +
 2 files changed, 6 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/commons-text/blob/a0cf8337/pom.xml
--
diff --git a/pom.xml b/pom.xml
index d8acd58..7d3ac36 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,6 +58,11 @@
   britter
   brit...@apache.org
 
+
+  Rob Tompkins
+  chtompki
+  chtom...@apache.org
+
   
   
 

http://git-wip-us.apache.org/repos/asf/commons-text/blob/a0cf8337/src/changes/changes.xml
--
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 6963e62..05f0bb6 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -22,6 +22,7 @@
   
 
   
+Add coveralls and 
Travis.ci integration
 Add 
alphabet converter
 Create Commons Text 
logo
 Improve 
HumanNameParser



[4/4] [text] TEXT-24: Adding build status, coverage status, and license to README

2016-11-06 Thread chtompki
TEXT-24: Adding build status, coverage status, and license to README


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

Branch: refs/heads/master
Commit: 07d296a47733217cf0247db497ce3a8e25e44f1e
Parents: be10deb
Author: Rob Tompkins 
Authored: Sun Nov 6 13:18:31 2016 -0500
Committer: Rob Tompkins 
Committed: Sun Nov 6 13:18:31 2016 -0500

--
 README.md | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/commons-text/blob/07d296a4/README.md
--
diff --git a/README.md b/README.md
index 19876f2..3f3df29 100644
--- a/README.md
+++ b/README.md
@@ -43,6 +43,10 @@
 Apache Commons Text
 ===
 
+[![Build 
Status](https://travis-ci.org/apache/commons-text.svg?branch=master)](https://travis-ci.org/apache/commons-text)
+[![Coverage 
Status](https://coveralls.io/repos/apache/commons-text/badge.svg?branch=master)](https://coveralls.io/r/apache/commons-text)
+[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
+
 Apache Commons Text is a library focused on algorithms working on strings.
 
 Documentation



[1/4] [text] TEXT-24: beginning .travis.yml

2016-11-06 Thread chtompki
Repository: commons-text
Updated Branches:
  refs/heads/master 79a48781c -> 07d296a47


TEXT-24: beginning .travis.yml


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

Branch: refs/heads/master
Commit: 1df533d39cab6e51aa6a28bf43ef3820ad598bc7
Parents: 79a4878
Author: Rob Tompkins 
Authored: Sun Nov 6 11:30:51 2016 -0500
Committer: Rob Tompkins 
Committed: Sun Nov 6 11:30:51 2016 -0500

--
 .travis.yml | 24 
 1 file changed, 24 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/commons-text/blob/1df533d3/.travis.yml
--
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000..595ddc7
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,24 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+language: java
+sudo: false
+
+jdk:
+  - openjdk7
+  - openjdk8
+
+after_success:
+  - mvn clean test jacoco:report coveralls:report



[3/4] [text] TEXT-24: switching to oraclejdk8

2016-11-06 Thread chtompki
TEXT-24: switching to oraclejdk8


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

Branch: refs/heads/master
Commit: be10deb190b3e59c5d05ac6bd09af26fee653e00
Parents: 50fda5d
Author: Rob Tompkins 
Authored: Sun Nov 6 13:11:47 2016 -0500
Committer: Rob Tompkins 
Committed: Sun Nov 6 13:11:47 2016 -0500

--
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/commons-text/blob/be10deb1/.travis.yml
--
diff --git a/.travis.yml b/.travis.yml
index 595ddc7..2ac2ac5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,7 +18,7 @@ sudo: false
 
 jdk:
   - openjdk7
-  - openjdk8
+  - oraclejdk8
 
 after_success:
   - mvn clean test jacoco:report coveralls:report



[2/4] [text] TEXT-24: adding travis profile to pom from rng

2016-11-06 Thread chtompki
TEXT-24: adding travis profile to pom from rng


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

Branch: refs/heads/master
Commit: 50fda5d28167fa97e213273479a3afcd09ccaedd
Parents: 1df533d
Author: Rob Tompkins 
Authored: Sun Nov 6 13:07:16 2016 -0500
Committer: Rob Tompkins 
Committed: Sun Nov 6 13:07:16 2016 -0500

--
 pom.xml | 93 ++--
 1 file changed, 84 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-text/blob/50fda5d2/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 5eb43e9..d8acd58 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,9 +16,9 @@
  limitations under the License.
 -->
 http://maven.apache.org/POM/4.0.0;
-  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+xmlns="http://maven.apache.org/POM/4.0.0;
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
   
 org.apache.commons
 commons-parent
@@ -31,7 +31,7 @@
 
   2014
   
-  Apache Commons Text is a library focused on algorithms working on strings.
+Apache Commons Text is a library focused on algorithms working on strings.
   
 
   http://commons.apache.org/sandbox/commons-text/
@@ -116,8 +116,12 @@
 12318221
 
 text
-
https://svn.apache.org/repos/infra/websites/production/commons/content/sandbox/commons-text
+
https://svn.apache.org/repos/infra/websites/production/commons/content/sandbox/commons-text
+
 
site-content
+
+
+{0,date,-MM-dd 
HH:mm:ssZ}
   
 
 
@@ -333,18 +337,18 @@
 
   
 
-  
+  
 
 
 
-  
+  
 
 
 
-  
+  
 
 
-  
+  
 
   
 
@@ -354,5 +358,76 @@
 
   
 
+
+  travis
+  
+
+  env.TRAVIS
+  true
+
+  
+  
+
+  
+org.jacoco
+jacoco-maven-plugin
+${commons.jacoco.version}
+
+  
+default-prepare-agent
+
+  prepare-agent
+
+  
+  
+default-prepare-agent-integration
+
+  prepare-agent-integration
+
+  
+  
+default-report
+
+  report
+
+  
+  
+default-report-integration
+
+  report-integration
+
+  
+  
+default-check
+
+  check
+
+
+  
+
+
+  BUNDLE
+  
+
+
+  COMPLEXITY
+  COVEREDRATIO
+  0.60
+
+  
+
+  
+
+  
+
+  
+  
+org.eluder.coveralls
+coveralls-maven-plugin
+3.1.0
+  
+
+  
+
   
 



Nexus: Staging Repository Dropped

2016-11-06 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:Commons RDF 0.3.0 RC1 was CANCELLED
https://lists.apache.org/thread.html/de95b67cb5223f43a4fd44bb849f1ad755eedb5e46dbefb605eb227f@%3Cdev.commonsrdf.apache.org%3EDeployer properties:"userAgent" = "Apache-Maven/3.3.9 (Java 1.8.0_91; Linux 4.4.0-45-generic)""userId" = "stain""ip" = "84.92.48.26"Details:The orgapachecommons-1217 staging repository has been dropped.Action performed by Stian Soiland-Reyes (stain)

Nexus: Staging Repository Dropped

2016-11-06 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDescription:Scheduled task 'Drop Idle Closed Repos' has dropped repositoryDeployer properties:"userAgent" = "Apache-Maven/3.3.9 (Java 1.7.0_111; Linux 4.6.5-gnu-1)""userId" = "mattsicker""ip" = "73.8.63.100"Details:The orgapachecommons-1196 staging repository has been dropped.

[lang] LANG-1281: Javadoc of StringUtils.ordinalIndexOf is contradictory (closes #205)

2016-11-06 Thread pascalschumacher
Repository: commons-lang
Updated Branches:
  refs/heads/master ea666d523 -> 05647d46e


LANG-1281: Javadoc of StringUtils.ordinalIndexOf is contradictory (closes #205)


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

Branch: refs/heads/master
Commit: 05647d46e9ac2bf674b320e8467616aa72954f3e
Parents: ea666d5
Author: pascalschumacher 
Authored: Fri Nov 4 17:20:56 2016 +0100
Committer: pascalschumacher 
Committed: Sun Nov 6 12:19:54 2016 +0100

--
 src/changes/changes.xml | 1 +
 src/main/java/org/apache/commons/lang3/StringUtils.java | 8 
 2 files changed, 5 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/05647d46/src/changes/changes.xml
--
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b2a886f..955c4a2 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -46,6 +46,7 @@ The  type attribute can be add,update,fix,remove.
   
 
   
+Javadoc of StringUtils.ordinalIndexOf is contradictory.
 Wrong name or 
result of StringUtils#getJaroWinklerDistance
 StringUtils#join(T...): warning: [unchecked] Possible heap 
pollution from parameterized vararg type T
 Multiple calls of 
org.apache.commons.lang3.concurrent.LazyInitializer.initialize() are 
possible.

http://git-wip-us.apache.org/repos/asf/commons-lang/blob/05647d46/src/main/java/org/apache/commons/lang3/StringUtils.java
--
diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java 
b/src/main/java/org/apache/commons/lang3/StringUtils.java
index 828f4c6..0d37d70 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -1394,10 +1394,10 @@ public class StringUtils {
  * Finds the n-th index within a CharSequence, handling {@code null}.
  * This method uses {@link String#indexOf(String)} if possible.
  * Note: The code starts looking for a match at the start of the 
target,
- * incrementing the starting index by one after each successful match.
- * The code increments the starting index by one,
- * rather than by the length of the match string,
- * so matches may overlap.
+ * incrementing the starting index by one after each successful match
+ * (unless {@code searchStr} is an empty string in which case the position
+ * is never incremented and {@code 0} is returned immediately).
+ * This means that matches may overlap.
  * A {@code null} CharSequence will return {@code -1}.
  *
  * 



[lang] LANG-1274: StrSubstitutor should state its thread safety (closes #207)

2016-11-06 Thread pascalschumacher
Repository: commons-lang
Updated Branches:
  refs/heads/master ff4497aff -> ea666d523


LANG-1274: StrSubstitutor should state its thread safety (closes #207)

Add paragraph to class javadoc stating that StrSubstitutor is not thread safe.


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

Branch: refs/heads/master
Commit: ea666d523021a3c33294030e7c6ac49a77be543a
Parents: ff4497a
Author: pascalschumacher 
Authored: Fri Nov 4 18:32:39 2016 +0100
Committer: pascalschumacher 
Committed: Sun Nov 6 12:15:01 2016 +0100

--
 src/changes/changes.xml | 1 +
 src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java | 1 +
 2 files changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/ea666d52/src/changes/changes.xml
--
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ff056bb..b2a886f 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -56,6 +56,7 @@ The  type attribute can be add,update,fix,remove.
 Add StringUtils#unwrap
 StringUtils#abbreviate 
should support 'custom ellipses' parameter
 Add StringUtils#isAnyNotEmpty and #isAnyNotBlank
+StrSubstitutor 
should state its thread safety
 StringUtils#getLevenshteinDistance reduce memory 
consumption
 Update Java 
requirement from Java 6 to 7.
 StringUtils should use toXxxxCase(int) rather than 
toXxxxCase(char)

http://git-wip-us.apache.org/repos/asf/commons-lang/blob/ea666d52/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java
--
diff --git a/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java 
b/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java
index db3a99a..811c3b5 100644
--- a/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java
+++ b/src/main/java/org/apache/commons/lang3/text/StrSubstitutor.java
@@ -118,6 +118,7 @@ import org.apache.commons.lang3.StringUtils;
  * names, but it has to be enabled explicitly by setting the
  * {@link #setEnableSubstitutionInVariables(boolean) 
enableSubstitutionInVariables}
  * property to true.
+ * This class is not thread safe.
  *
  * @since 2.2
  */



svn commit: r1768303 - /commons/proper/daemon/trunk/src/native/windows/apps/prunmgr/

2016-11-06 Thread markt
Author: markt
Date: Sun Nov  6 11:07:39 2016
New Revision: 1768303

URL: http://svn.apache.org/viewvc?rev=1768303=rev
Log:
Ignore output dir

Modified:
commons/proper/daemon/trunk/src/native/windows/apps/prunmgr/   (props 
changed)

Propchange: commons/proper/daemon/trunk/src/native/windows/apps/prunmgr/
--
--- svn:ignore (original)
+++ svn:ignore Sun Nov  6 11:07:39 2016
@@ -1 +1,2 @@
 WINXP_X64_GUI_RELEASE
+WINXP_X86_GUI_RELEASE




svn commit: r1768302 - in /commons/proper/daemon/trunk: pom.xml src/changes/changes.xml

2016-11-06 Thread markt
Author: markt
Date: Sun Nov  6 11:06:48 2016
New Revision: 1768302

URL: http://svn.apache.org/viewvc?rev=1768302=rev
Log:
Update Commons-Parent to 41

Modified:
commons/proper/daemon/trunk/pom.xml
commons/proper/daemon/trunk/src/changes/changes.xml

Modified: commons/proper/daemon/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/pom.xml?rev=1768302=1768301=1768302=diff
==
--- commons/proper/daemon/trunk/pom.xml (original)
+++ commons/proper/daemon/trunk/pom.xml Sun Nov  6 11:06:48 2016
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-35
+41
   
   4.0.0
   commons-daemon

Modified: commons/proper/daemon/trunk/src/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/changes/changes.xml?rev=1768302=1768301=1768302=diff
==
--- commons/proper/daemon/trunk/src/changes/changes.xml (original)
+++ commons/proper/daemon/trunk/src/changes/changes.xml Sun Nov  6 11:06:48 2016
@@ -61,6 +61,9 @@
 Ensure that the PID file on Windows, if used, is readable by other
 processes.
   
+  
+Update Commons-Parent to version 41.
+