[commons-text] branch master updated: commons.japicmp.version 0.13.0 -> 0.14.1.

2019-07-27 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
 new c65b583  commons.japicmp.version 0.13.0 -> 0.14.1.
c65b583 is described below

commit c65b58331a0a7dbc2d5ddcac1367506cccadd5d9
Author: Gary Gregory 
AuthorDate: Sat Jul 27 19:40:52 2019 -0400

commons.japicmp.version 0.13.0 -> 0.14.1.
---
 pom.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9b31b72..c47dab7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,8 +58,7 @@
 
 
 
false
-
-0.13.0
+0.14.1
 false
 
 



[commons-text] branch master updated: Update properties for the next release.

2019-07-27 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
 new 5a88627  Update properties for the next release.
5a88627 is described below

commit 5a88627d1756b3406e7a56f596e6881931d6be49
Author: Gary Gregory 
AuthorDate: Sat Jul 27 19:40:06 2019 -0400

Update properties for the next release.
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index e123b88..9b31b72 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,7 +37,7 @@
 text
 org.apache.commons.text
 
-1.7
+1.8
 (Java 8+)
 
 TEXT
@@ -63,7 +63,7 @@
 false
 
 
-1.6
+1.7
 RC1
 true
 
scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}



[commons-text] branch master updated: Fix checkstyle violations in StringSubstitutor#createInterpolator.

2019-07-27 Thread pascalschumacher
This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
 new b299b1c  Fix checkstyle violations in 
StringSubstitutor#createInterpolator.
b299b1c is described below

commit b299b1cac6ffccb7613178e5311995e779a4091a
Author: Pascal Schumacher 
AuthorDate: Sat Jul 27 11:45:07 2019 +0200

Fix checkstyle violations in StringSubstitutor#createInterpolator.
---
 src/main/java/org/apache/commons/text/StringSubstitutor.java | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/text/StringSubstitutor.java 
b/src/main/java/org/apache/commons/text/StringSubstitutor.java
index fa33d61..6764fe6 100644
--- a/src/main/java/org/apache/commons/text/StringSubstitutor.java
+++ b/src/main/java/org/apache/commons/text/StringSubstitutor.java
@@ -182,8 +182,9 @@ public class StringSubstitutor {
 StringMatcherFactory.INSTANCE.stringMatcher(DEFAULT_VAR_DEFAULT);
 
 /**
- * Creates a new instance using the interpolator string lookup {@link 
StringLookupFactory#interpolatorStringLookup()}.
- * 
+ * Creates a new instance using the interpolator string lookup
+ * {@link StringLookupFactory#interpolatorStringLookup()}.
+ *
  * @return a new instance using the interpolator string lookup.
  * @see StringLookupFactory#interpolatorStringLookup()
  * @since 1.8
@@ -191,7 +192,7 @@ public class StringSubstitutor {
 public static StringSubstitutor createInterpolator() {
 return new 
StringSubstitutor(StringLookupFactory.INSTANCE.interpolatorStringLookup());
 }
-
+
 /**
  * Replaces all the occurrences of variables in the given source object 
with their matching values from the map.
  *