Skip to content

Commit 5e39dd4

Browse files
committed
Prepare for the next release candidate
1 parent 3ce2774 commit 5e39dd4

5 files changed

Lines changed: 71 additions & 18 deletions

File tree

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ Additional Resources
110110
+ [Contributor License Agreement][cla]
111111
+ [General GitHub documentation](https://help.github.com/)
112112
+ [GitHub pull request documentation](https://help.github.com/articles/creating-a-pull-request/)
113-
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
114113

115114
[cla]:https://www.apache.org/licenses/#clas
116115
[jira]:https://issues.apache.org/jira/browse/IO

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Apache Commons IO
4545

4646
[![Java CI](https://github.com/apache/commons-io/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-io/actions/workflows/maven.yml)
4747
[![Maven Central](https://img.shields.io/maven-central/v/commons-io/commons-io?label=Maven%20Central)](https://search.maven.org/artifact/commons-io/commons-io)
48-
[![Javadocs](https://javadoc.io/badge/commons-io/commons-io/2.21.0.svg)](https://javadoc.io/doc/commons-io/commons-io/2.21.0)
48+
[![Javadocs](https://javadoc.io/badge/commons-io/commons-io/2.22.0.svg)](https://javadoc.io/doc/commons-io/commons-io/2.22.0)
4949
[![CodeQL](https://github.com/apache/commons-io/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-io/actions/workflows/codeql-analysis.yml)
5050
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-io/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-io)
5151

@@ -69,7 +69,7 @@ Alternatively, you can pull it from the central Maven repositories:
6969
<dependency>
7070
<groupId>commons-io</groupId>
7171
<artifactId>commons-io</artifactId>
72-
<version>2.21.0</version>
72+
<version>2.22.0</version>
7373
</dependency>
7474
```
7575

@@ -112,7 +112,6 @@ Additional Resources
112112
+ [Apache Commons Homepage](https://commons.apache.org/)
113113
+ [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/IO)
114114
+ [Apache Commons Slack Channel](https://the-asf.slack.com/archives/C60NVB8AD)
115-
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
116115

117116
Apache Commons Components
118117
-------------------------

RELEASE-NOTES.txt

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,59 @@
11

2+
Apache Commons IO 2.22.0 Release Notes
3+
4+
The Apache Commons IO team is pleased to announce the release of Apache Commons IO 2.22.0.
5+
6+
Introduction
7+
------------
8+
9+
The Apache Commons IO library contains utility classes, stream implementations, file filters,
10+
file comparators, endian transformation classes, and much more.
11+
12+
This is a feature and maintenance release. Java 8 or later is required.
13+
14+
New features
15+
------------
16+
17+
o Add and use IOUtils.closeQuietly(Closeable, Throwable) #818. Thanks to Gary Gregory.
18+
19+
Fixed Bugs
20+
----------
21+
22+
o Fix Apache RAT plugin console warnings. Thanks to Gary Gregory.
23+
o ByteArraySeekableByteChannel.position(long) and truncate(long) shouldn't throw an IllegalArgumentException for a new positive position that's too large #817. Thanks to Gary Gregory, Piotr P. Karwasz.
24+
o Fix malformed Javadoc comments. Thanks to Gary Gregory.
25+
o ReadAheadInputStream.close() doesn't always close its filtered input stream. Thanks to Stanislav Fort, Gary Gregory.
26+
27+
Changes
28+
-------
29+
30+
o Bump org.apache.commons:commons-parent from 91 to 95 #816. Thanks to Gary Gregory, Dependabot.
31+
o Bump commons-codec:commons-codec from 1.19.0 to 1.20.0 #812. Thanks to Gary Gregory, Dependabot.
32+
o Bump commons.bytebuddy.version from 1.17.8 to 1.18.3 #814, #820. Thanks to Gary Gregory, Dependabot.
33+
o Bump commons-lang3 from 3.19.0 to 3.20.0. Thanks to Gary Gregory, Dependabot.
34+
35+
36+
Commons IO 2.7 and up requires Java 8 or above.
37+
Commons IO 2.6 requires Java 7 or above.
38+
Commons IO 2.3 through 2.5 requires Java 6 or above.
39+
Commons IO 2.2 requires Java 5 or above.
40+
Commons IO 1.4 requires Java 1.3 or above.
41+
42+
Historical list of changes: https://commons.apache.org/proper/commons-io/changes.html
43+
44+
For complete information on Apache Commons IO, including instructions on how to submit bug reports,
45+
patches, or suggestions for improvement, see the Apache Commons IO website:
46+
47+
https://commons.apache.org/proper/commons-io/
48+
49+
Download page: https://commons.apache.org/proper/commons-io/download_io.cgi
50+
51+
Have fun!
52+
-Apache Commons Team
53+
54+
------------------------------------------------------------------------------
55+
56+
257
Apache Commons IO 2.21.0 Release Notes
358

459
The Apache Commons IO team is pleased to announce the release of Apache Commons IO 2.21.0.

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The <action> type attribute can be add,update,fix,remove.
4545
<title>Apache Commons IO Release Notes</title>
4646
</properties>
4747
<body>
48-
<release version="2.22.0" date="YYYY-MM-DD" description="This is a feature and maintenance release. Java 8 or later is required.">
48+
<release version="2.22.0" date="2026-01-19" description="This is a feature and maintenance release. Java 8 or later is required.">
4949
<!-- FIX -->
5050
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT plugin console warnings.</action>
5151
<action type="fix" dev="ggregory" due-to="Gary Gregory, Piotr P. Karwasz">ByteArraySeekableByteChannel.position(long) and truncate(long) shouldn't throw an IllegalArgumentException for a new positive position that's too large #817.</action>

src/site/xdoc/download_io.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -115,32 +115,32 @@ limitations under the License.
115115
</p>
116116
</subsection>
117117
</section>
118-
<section name="Apache Commons IO 2.21.0 (requires Java 8)">
118+
<section name="Apache Commons IO 2.22.0 (requires Java 8)">
119119
<subsection name="Binaries">
120120
<table>
121121
<tr>
122-
<td><a href="[preferred]/commons/io/binaries/commons-io-2.21.0-bin.tar.gz">commons-io-2.21.0-bin.tar.gz</a></td>
123-
<td><a href="https://downloads.apache.org/commons/io/binaries/commons-io-2.21.0-bin.tar.gz.sha512">sha512</a></td>
124-
<td><a href="https://downloads.apache.org/commons/io/binaries/commons-io-2.21.0-bin.tar.gz.asc">pgp</a></td>
122+
<td><a href="[preferred]/commons/io/binaries/commons-io-2.22.0-bin.tar.gz">commons-io-2.22.0-bin.tar.gz</a></td>
123+
<td><a href="https://downloads.apache.org/commons/io/binaries/commons-io-2.22.0-bin.tar.gz.sha512">sha512</a></td>
124+
<td><a href="https://downloads.apache.org/commons/io/binaries/commons-io-2.22.0-bin.tar.gz.asc">pgp</a></td>
125125
</tr>
126126
<tr>
127-
<td><a href="[preferred]/commons/io/binaries/commons-io-2.21.0-bin.zip">commons-io-2.21.0-bin.zip</a></td>
128-
<td><a href="https://downloads.apache.org/commons/io/binaries/commons-io-2.21.0-bin.zip.sha512">sha512</a></td>
129-
<td><a href="https://downloads.apache.org/commons/io/binaries/commons-io-2.21.0-bin.zip.asc">pgp</a></td>
127+
<td><a href="[preferred]/commons/io/binaries/commons-io-2.22.0-bin.zip">commons-io-2.22.0-bin.zip</a></td>
128+
<td><a href="https://downloads.apache.org/commons/io/binaries/commons-io-2.22.0-bin.zip.sha512">sha512</a></td>
129+
<td><a href="https://downloads.apache.org/commons/io/binaries/commons-io-2.22.0-bin.zip.asc">pgp</a></td>
130130
</tr>
131131
</table>
132132
</subsection>
133133
<subsection name="Source">
134134
<table>
135135
<tr>
136-
<td><a href="[preferred]/commons/io/source/commons-io-2.21.0-src.tar.gz">commons-io-2.21.0-src.tar.gz</a></td>
137-
<td><a href="https://downloads.apache.org/commons/io/source/commons-io-2.21.0-src.tar.gz.sha512">sha512</a></td>
138-
<td><a href="https://downloads.apache.org/commons/io/source/commons-io-2.21.0-src.tar.gz.asc">pgp</a></td>
136+
<td><a href="[preferred]/commons/io/source/commons-io-2.22.0-src.tar.gz">commons-io-2.22.0-src.tar.gz</a></td>
137+
<td><a href="https://downloads.apache.org/commons/io/source/commons-io-2.22.0-src.tar.gz.sha512">sha512</a></td>
138+
<td><a href="https://downloads.apache.org/commons/io/source/commons-io-2.22.0-src.tar.gz.asc">pgp</a></td>
139139
</tr>
140140
<tr>
141-
<td><a href="[preferred]/commons/io/source/commons-io-2.21.0-src.zip">commons-io-2.21.0-src.zip</a></td>
142-
<td><a href="https://downloads.apache.org/commons/io/source/commons-io-2.21.0-src.zip.sha512">sha512</a></td>
143-
<td><a href="https://downloads.apache.org/commons/io/source/commons-io-2.21.0-src.zip.asc">pgp</a></td>
141+
<td><a href="[preferred]/commons/io/source/commons-io-2.22.0-src.zip">commons-io-2.22.0-src.zip</a></td>
142+
<td><a href="https://downloads.apache.org/commons/io/source/commons-io-2.22.0-src.zip.sha512">sha512</a></td>
143+
<td><a href="https://downloads.apache.org/commons/io/source/commons-io-2.22.0-src.zip.asc">pgp</a></td>
144144
</tr>
145145
</table>
146146
</subsection>

0 commit comments

Comments
 (0)