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/28 22:06:37 UTC

[commons-io] branch master updated: [IO-676] Add isFileNewer() and isFileOlder() methods that support the Java 8 Date/Time API. #124.

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


The following commit(s) were added to refs/heads/master by this push:
     new 891a55d  [IO-676] Add isFileNewer() and isFileOlder() methods that support the Java 8 Date/Time API. #124.
891a55d is described below

commit 891a55da3148388f7dc3d1238ff926c118bd4d9c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Aug 28 18:06:29 2020 -0400

    [IO-676] Add isFileNewer() and isFileOlder() methods that support the
    Java 8 Date/Time API. #124.
---
 src/changes/changes.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index e964c00..c15c2f2 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -124,6 +124,9 @@ The <action> type attribute can be add,update,fix,remove.
       <action dev="ggregory" type="add" due-to="Gary Gregory">
         Add IOUtils.consume(InputStream).
       </action>
+      <action issue="IO-676" dev="ggregory" type="add" due-to="Isira Seneviratne, Gary Gregory">
+        Add isFileNewer() and isFileOlder() methods that support the Java 8 Date/Time API. #124.
+      </action>
       <!-- UPDATES -->
       <action dev="ggregory" type="add" due-to="Gary Gregory">
         Deprecate IOUtils.LINE_SEPARATOR in favor of Java 7's System.lineSeparator().