|
1 | 1 | $Id$ |
2 | 2 |
|
3 | 3 | Commons IO Package |
4 | | - Version 1.0 |
5 | | - Release Notes |
| 4 | + Version 1.1 |
| 5 | + Release Notes |
6 | 6 |
|
7 | 7 |
|
8 | 8 | INTRODUCTION: |
9 | 9 |
|
10 | | -This document contains the release notes for this version of the Commons |
11 | | -IO package. |
12 | | - |
13 | 10 | Commons IO is a package of Java utility classes for java.io's hierarchy. |
14 | 11 | Classes in this package are considered to be so standard and of such high |
15 | 12 | reuse as to justify existence in java.io. |
16 | 13 |
|
17 | 14 | Commons IO contains utility classes, stream implementations, file filters, |
18 | 15 | and endian transformation classes. |
19 | 16 |
|
20 | | -NEW FEATURES: |
21 | 17 |
|
22 | | -* This is the first release of Commons IO, so all features are new features. |
| 18 | +Incompatible changes from 1.0 |
| 19 | +----------------------------- |
| 20 | +Binary compatible - ??? |
| 21 | + |
| 22 | +Source compatible - ??? |
| 23 | + |
| 24 | +Semantic compatible - ??? |
| 25 | + |
| 26 | + |
| 27 | +Deprecations from 1.0 |
| 28 | +--------------------- |
| 29 | +CopyUtils has been deprecated. |
| 30 | +Its methods have been moved to IOUtils. |
| 31 | +The new IOUtils methods handle nulls better, and have clearer names. |
| 32 | + |
| 33 | +IOUtils.toByteArray(String) - Use {@link String#getBytes()} |
| 34 | +IOUtils.toString(byte[]) - Use {@link String#String(byte[])} |
| 35 | +IOUtils.toString(byte[],String) - Use {@link String#String(byte[],String)} |
| 36 | + |
| 37 | + |
| 38 | +Bug fixes from 1.0 |
| 39 | +------------------ |
| 40 | + |
| 41 | + |
| 42 | +Enhancements from 1.0 |
| 43 | +--------------------- |
| 44 | + |
| 45 | + |
| 46 | +Feedback |
| 47 | +-------- |
| 48 | +Open source works best when you give feedback. |
23 | 49 |
|
24 | | -BUG FIXES: |
| 50 | +Please direct all bug reports to Bugzilla. |
| 51 | +http://issues.apache.org/bugzilla/buglist.cgi?product=Commons&component=IO |
25 | 52 |
|
26 | | -Since this is the first release, there are no declared bugfixes. |
| 53 | +Or subscribe to the commons-user mailing list (prefix emails by [io]) |
| 54 | +http://jakarta.apache.org/site/mail.html |
27 | 55 |
|
| 56 | +The Commons-IO Team |
0 commit comments