You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/08/03 13:29:18 UTC

[commons-lang] branch master updated (bc96128 -> 8a877ec)

This is an automated email from the ASF dual-hosted git repository.

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


    from bc96128  Bump junit-pioneer from 0.7.0 to 0.8.0 (#597)
     new 03ae165  Document recent changes.
     new 3b7d72e  Use the POM defaultGoal so that Travis and GitHub run the same builds.
     new 528e4c7  Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git
     new e27c4b2  Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git
     new 8a877ec  Describe recent change.

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/maven.yml | 2 +-
 pom.xml                     | 2 +-
 src/changes/changes.xml     | 7 ++++---
 3 files changed, 6 insertions(+), 5 deletions(-)


[commons-lang] 02/05: Use the POM defaultGoal so that Travis and GitHub run the same builds.

Posted by gg...@apache.org.
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-lang.git

commit 3b7d72e6cfdf3ea74e5de89412637079dbe3ed37
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jul 31 09:16:50 2020 -0400

    Use the POM defaultGoal so that Travis and GitHub run the same builds.
---
 .github/workflows/maven.yml | 2 +-
 pom.xml                     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index ec976dc..7ebed4c 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -39,4 +39,4 @@ jobs:
       with:
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml
+      run: mvn -V -Ddoclint=all --file pom.xml
diff --git a/pom.xml b/pom.xml
index 2806277..ea9df57 100644
--- a/pom.xml
+++ b/pom.xml
@@ -634,7 +634,7 @@
 
 
   <build>
-   <defaultGoal>clean verify apache-rat:check checkstyle:check japicmp:cmp spotbugs:check javadoc:javadoc</defaultGoal>
+   <defaultGoal>clean package apache-rat:check checkstyle:check japicmp:cmp spotbugs:check javadoc:javadoc</defaultGoal>
    <pluginManagement>
       <plugins>
         <plugin>


[commons-lang] 03/05: Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git

Posted by gg...@apache.org.
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-lang.git

commit 528e4c7655b84b6afe5bf59601b7744c4bf09ca9
Merge: 3b7d72e 4897c88
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Aug 3 09:20:46 2020 -0400

    Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git

 pom.xml                                                     |  2 +-
 src/test/java/org/apache/commons/lang3/StringUtilsTest.java | 10 ++++++++++
 2 files changed, 11 insertions(+), 1 deletion(-)



[commons-lang] 01/05: Document recent changes.

Posted by gg...@apache.org.
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-lang.git

commit 03ae16503990764ced213063e9bbb35289f65270
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jul 31 09:13:40 2020 -0400

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

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 1205879..6c82d86 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -48,11 +48,12 @@ The <action> type attribute can be add,update,fix,remove.
   <release version="3.12" date="2020-MM-DD" description="New features and bug fixes.">
     <action issue="LANG-1592" type="fix" dev="aherbert" due-to="Huang Pingcai, Alex Herbert">Correct implementation of RandomUtils.nextLong(long, long)</action>
     <action issue="LANG-1591" type="update" dev="kinow" due-to="bhawna94">Remove redundant argument from substring call.</action>
+    <action issue="LANG-1579" type="update" dev="aherbert" due-to="XenoAmess">Improve StringUtils.stripAccents conversion of remaining accents.</action>
     <action                   type="update" dev="ggregory" due-to="Gary Gregory">Enable Dependabot #587.</action>
-    <action                   type="update" dev="ggregory" due-to="Dependabot">Update spotbugs-maven-plugin from 4.0.0 to 4.0.4 #593.</action>
+    <action                   type="update" dev="ggregory" due-to="Dependabot">Update spotbugs-maven-plugin from 4.0.0 to 4.1.1, #593, #596.</action>
     <action                   type="update" dev="ggregory" due-to="Dependabot">Update biz.aQute.bndlib from 5.1.1 to 5.1.2 #592.</action>
     <action                   type="update" dev="ggregory" due-to="Dependabot">Update junit-pioneer from 0.6.0 to 0.7.0 #589.</action>
-    <action issue="LANG-1579" type="update" dev="aherbert" due-to="XenoAmess">Improve StringUtils.stripAccents conversion of remaining accents.</action>
+    <action                   type="update" dev="ggregory" due-to="Dependabot">Update checkstyle from 8.34 to 8.35 #594.</action>
   </release>
   <release version="3.11" date="2020-07-12" description="New features and bug fixes.">
     <action                   type="update" dev="chtompki" due-to="Jin Xu">Refine test output for FastDateParserTest</action>


[commons-lang] 05/05: Describe recent change.

Posted by gg...@apache.org.
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-lang.git

commit 8a877ec12e0209e5928b8cae806ba83c8fe5ed79
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Aug 3 09:29:10 2020 -0400

    Describe recent change.
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 6c82d86..dde041b 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -52,7 +52,7 @@ The <action> type attribute can be add,update,fix,remove.
     <action                   type="update" dev="ggregory" due-to="Gary Gregory">Enable Dependabot #587.</action>
     <action                   type="update" dev="ggregory" due-to="Dependabot">Update spotbugs-maven-plugin from 4.0.0 to 4.1.1, #593, #596.</action>
     <action                   type="update" dev="ggregory" due-to="Dependabot">Update biz.aQute.bndlib from 5.1.1 to 5.1.2 #592.</action>
-    <action                   type="update" dev="ggregory" due-to="Dependabot">Update junit-pioneer from 0.6.0 to 0.7.0 #589.</action>
+    <action                   type="update" dev="ggregory" due-to="Dependabot">Update junit-pioneer from 0.6.0 to 0.8.0, #589, #597.</action>
     <action                   type="update" dev="ggregory" due-to="Dependabot">Update checkstyle from 8.34 to 8.35 #594.</action>
   </release>
   <release version="3.11" date="2020-07-12" description="New features and bug fixes.">


[commons-lang] 04/05: Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git

Posted by gg...@apache.org.
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-lang.git

commit e27c4b202aa0867d629295c8590c17b25976bac1
Merge: 528e4c7 bc96128
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Aug 3 09:28:46 2020 -0400

    Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git

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