Skip to content

Commit bdeb594

Browse files
author
Niall Pemberton
committed
Update the release notes
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@425113 13f79535-47bb-0310-9956-ffa450edef68
1 parent dd2b704 commit bdeb594

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,37 +58,51 @@ Enhancements from 1.2
5858
- New IOFileFilter implementation
5959
- Accepts files where File.isFile() is true
6060
- In other words it filters out directories
61+
- Singleton instance provided (FILE)
6162

6263
- CanReadFileFilter
6364
- New IOFileFilter implementation
6465
- Accepts files where File.canRead() is true
66+
- Singleton instances provided (CAN_READ/CANNOT_READ/READ_ONLY)
6567

6668
- CanWriteFileFilter
6769
- New IOFileFilter implementation
6870
- Accepts files where File.canWrite() is true
71+
- Singleton instances provided (CAN_WRITE/CANNOT_WRITE)
6972

7073
- HiddenFileFilter
7174
- New IOFileFilter implementation
7275
- Accepts files where File.isHidden() is true
76+
- Singleton instances provided (HIDDEN/VISIBLE)
7377

7478
- EmptyFileFilter
7579
- New IOFileFilter implementation
7680
- Accepts files or directories that are empty
81+
- Singleton instances provided (EMPTY/NO_EMPTY)
7782

7883
- TrueFileFilter/FalseFileFilter/DirectoryFileFilter
7984
- New singleton instance constants (TRUE/FALSE/DIRECTORY)
8085
- The new constants are more JDK 1.5 friendly with regards to static imports
8186
(whereas if everything uses INSTANCE, then they just clash)
8287
- The old INSTANCE constants are still present and have not been deprecated
8388

89+
- FileFilterUtils
90+
- new sizeFileFilter(long minimumSize, long maximumSize) method which
91+
creates a filter that accepts files within the specified size range.
92+
93+
- FileUtils
94+
- add methods to check if a file is older (i.e. isFileOlder()) - counterparts
95+
to the existing isFileNewer() methods.
96+
97+
8498

8599
Feedback
86100
--------
87101
Open source works best when you give feedback:
88102
http://jakarta.apache.org/commons/io/
89103

90-
Please direct all bug reports to Bugzilla (prefix bug reports by [io])
91-
http://issues.apache.org/bugzilla/buglist.cgi?product=Commons&component=IO
104+
Please direct all bug reports to JIRA
105+
http://issues.apache.org/jira/browse/IO
92106

93107
Or subscribe to the commons-user mailing list (prefix emails by [io])
94108
http://jakarta.apache.org/site/mail.html

0 commit comments

Comments
 (0)