Skip to content

Commit 7c00a34

Browse files
author
Stephen Colebourne
committed
Start 1.1 release process
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@239273 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3599166 commit 7c00a34

2 files changed

Lines changed: 56 additions & 10 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 38 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,56 @@
11
$Id$
22

33
Commons IO Package
4-
Version 1.0
5-
Release Notes
4+
Version 1.1
5+
Release Notes
66

77

88
INTRODUCTION:
99

10-
This document contains the release notes for this version of the Commons
11-
IO package.
12-
1310
Commons IO is a package of Java utility classes for java.io's hierarchy.
1411
Classes in this package are considered to be so standard and of such high
1512
reuse as to justify existence in java.io.
1613

1714
Commons IO contains utility classes, stream implementations, file filters,
1815
and endian transformation classes.
1916

20-
NEW FEATURES:
2117

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.
2349

24-
BUG FIXES:
50+
Please direct all bug reports to Bugzilla.
51+
http://issues.apache.org/bugzilla/buglist.cgi?product=Commons&component=IO
2552

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
2755

56+
The Commons-IO Team

project.properties

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# Copyright 2003-2005 The Apache Software Foundation
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
115
maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
216

317
maven.xdoc.jsl=../commons-build/commons-site.jsl
@@ -6,5 +20,8 @@ maven.xdoc.version=${pom.currentVersion}
620
maven.xdoc.developmentProcessUrl=http://jakarta.apache.org/commons/charter.html
721
maven.xdoc.poweredby.image=maven-feather.png
822

9-
maven.javadoc.links=http://java.sun.com/j2se/1.3/docs/api/
23+
maven.javadoc.author=false
24+
maven.javadoc.links=http://java.sun.com/j2se/1.4/docs/api/
1025
maven.javadoc.additionalparam=-tag todo:a:"To Do:"
26+
27+
maven.jdiff.old.tag=IO_1_0

0 commit comments

Comments
 (0)