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 2022/03/20 12:15:09 UTC

[commons-io] branch master updated (3f9ff10 -> c7cb67f)

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-io.git.


    from 3f9ff10  Bump junit-pioneer from 1.6.1 to 1.6.2 #335
     new 4a26a4a  Add a few assertions.
     new ce06c1f  Bump Maven Javadoc plugin from 3.3.1 to 3.3.2.
     new d36c101  Fix entry placement.
     new c7cb67f  Bump japicmp-maven-plugin from 0.15.6 to 0.15.7.

The 4 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:
 pom.xml                                                     | 4 ++--
 src/changes/changes.xml                                     | 6 +++---
 src/test/java/org/apache/commons/io/FileUtilsTest.java      | 1 +
 src/test/java/org/apache/commons/io/file/PathUtilsTest.java | 1 +
 4 files changed, 7 insertions(+), 5 deletions(-)

[commons-io] 04/04: Bump japicmp-maven-plugin from 0.15.6 to 0.15.7.

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-io.git

commit c7cb67f5862b3b419c362285e9298955d328e965
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 20 08:14:26 2022 -0400

    Bump japicmp-maven-plugin from 0.15.6 to 0.15.7.
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index a30e637..9ebbad8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -340,7 +340,7 @@ file comparators, endian transformation classes, and much more.
     <checkstyle.impl.version>9.3</checkstyle.impl.version>
     <commons.jacoco.version>0.8.7</commons.jacoco.version>
     <commons.surefire.version>3.0.0-M5</commons.surefire.version>
-    <commons.japicmp.version>0.15.6</commons.japicmp.version>
+    <commons.japicmp.version>0.15.7</commons.japicmp.version>
     <commons.enforcer.version>3.0.0</commons.enforcer.version>
     <commons.moditect.version>1.0.0.RC2</commons.moditect.version>
     <commons.spotbugs.plugin.version>4.5.3.0</commons.spotbugs.plugin.version>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index afc9a10..8a8c20c 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -376,7 +376,7 @@ The <action> type attribute can be add,update,fix,remove.
         Bump spotbugs from 4.5.2 to 4.5.3 #313, #317.
       </action>
       <action dev="ggregory" type="update" due-to="Gary Gregory">
-        Bump japicmp-maven-plugin from 0.15.3 to 0.15.6.
+        Bump japicmp-maven-plugin from 0.15.3 to 0.15.7.
       </action>
     </release>
     <release version="2.11.0" date="2021-07-09" description="Java 8 required.">

[commons-io] 01/04: Add a few assertions.

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-io.git

commit 4a26a4a6180545a53b499c54239082ab274720b4
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 20 08:10:22 2022 -0400

    Add a few assertions.
---
 src/test/java/org/apache/commons/io/FileUtilsTest.java      | 1 +
 src/test/java/org/apache/commons/io/file/PathUtilsTest.java | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/test/java/org/apache/commons/io/FileUtilsTest.java b/src/test/java/org/apache/commons/io/FileUtilsTest.java
index b59ba30..3c3414a 100644
--- a/src/test/java/org/apache/commons/io/FileUtilsTest.java
+++ b/src/test/java/org/apache/commons/io/FileUtilsTest.java
@@ -1623,6 +1623,7 @@ public class FileUtilsTest extends AbstractTempDirTest {
 
         final Path tempDir = Files.createTempDirectory(getClass().getCanonicalName());
         final File tempDirAsFile = tempDir.toFile();
+        assertTrue(FileUtils.isDirectory(tempDirAsFile));
         Files.delete(tempDir);
         assertFalse(FileUtils.isDirectory(tempDirAsFile));
     }
diff --git a/src/test/java/org/apache/commons/io/file/PathUtilsTest.java b/src/test/java/org/apache/commons/io/file/PathUtilsTest.java
index bf95a36..5cd0c78 100644
--- a/src/test/java/org/apache/commons/io/file/PathUtilsTest.java
+++ b/src/test/java/org/apache/commons/io/file/PathUtilsTest.java
@@ -229,6 +229,7 @@ public class PathUtilsTest extends AbstractTempDirTest {
         assertFalse(PathUtils.isDirectory(testFile1));
 
         final Path tempDir = Files.createTempDirectory(getClass().getCanonicalName());
+        assertTrue(PathUtils.isDirectory(tempDir));
         Files.delete(tempDir);
         assertFalse(PathUtils.isDirectory(tempDir));
     }

[commons-io] 02/04: Bump Maven Javadoc plugin from 3.3.1 to 3.3.2.

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-io.git

commit ce06c1fe1d6cbe125dc832dc7d4854258bae545b
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 20 08:12:58 2022 -0400

    Bump Maven Javadoc plugin from 3.3.1 to 3.3.2.
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6c61bd9..a30e637 100644
--- a/pom.xml
+++ b/pom.xml
@@ -335,7 +335,7 @@ file comparators, endian transformation classes, and much more.
     <commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/</commons.scmPubUrl>
     <commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory>
     <commons.javadoc.java.link>${commons.javadoc8.java.link}</commons.javadoc.java.link>
-    <commons.javadoc.version>3.3.1</commons.javadoc.version>
+    <commons.javadoc.version>3.3.2</commons.javadoc.version>
     <commons.checkstyle-plugin.version>3.1.2</commons.checkstyle-plugin.version>
     <checkstyle.impl.version>9.3</checkstyle.impl.version>
     <commons.jacoco.version>0.8.7</commons.jacoco.version>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 617e046..260a682 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -337,7 +337,7 @@ The <action> type attribute can be add,update,fix,remove.
         Update FileEntry to use FileTime instead of long for file time stamps.
       </action>
       <action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory">
-        Bump Maven Javadoc plugin from 3.2.0 to 3.3.1.
+        Bump Maven Javadoc plugin from 3.2.0 to 3.3.2.
       </action>
       <action dev="ggregory" type="update" due-to="Dependabot">
         Bump spotbugs-maven-plugin from 4.2.3 to 4.5.3.0 #250, #259, #272, #274, #285, #288, #289, #305, #315, #326.

[commons-io] 03/04: Fix entry placement.

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-io.git

commit d36c1016cbde3e69438e64a7aaeba8d8467d6363
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 20 08:13:56 2022 -0400

    Fix entry placement.
---
 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 260a682..afc9a10 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -332,10 +332,10 @@ The <action> type attribute can be add,update,fix,remove.
       <action dev="ggregory" type="add" due-to="Gary Gregory">
         Add PathUtils.createParentDirectories(Path, LinkOption, FileAttribute...).
       </action>
-      <!-- UPDATE -->
       <action dev="ggregory" type="add" due-to="Gary Gregory">
         Update FileEntry to use FileTime instead of long for file time stamps.
       </action>
+      <!-- UPDATE -->
       <action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory">
         Bump Maven Javadoc plugin from 3.2.0 to 3.3.2.
       </action>