Skip to content

Commit 1c23ee9

Browse files
committed
Prepare for the next release candidate
1 parent 4b32c49 commit 1c23ee9

File tree

5 files changed

+59
-23
lines changed

5 files changed

+59
-23
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ Apache Commons Codec
4545

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

5252
The Apache Commons Codec component contains encoders and decoders for
53-
various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these
53+
formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these
5454
widely used encoders and decoders, the codec package also maintains a
5555
collection of phonetic encoding utilities.
5656

@@ -65,20 +65,20 @@ Getting the latest release
6565
--------------------------
6666
You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-codec/download_codec.cgi).
6767

68-
Alternatively, you can pull it from the central Maven repositories:
68+
Alternatively, you can pull it from the central Maven repositories:
6969

7070
```xml
7171
<dependency>
7272
<groupId>commons-codec</groupId>
7373
<artifactId>commons-codec</artifactId>
74-
<version>1.17.1</version>
74+
<version>1.17.2</version>
7575
</dependency>
7676
```
7777

7878
Building
7979
--------
8080

81-
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
81+
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
8282
The required Java version is found in the `pom.xml` as the `maven.compiler.source` property.
8383

8484
From a command shell, run `mvn` without arguments to invoke the default Maven goal to run all tests and checks.

RELEASE-NOTES.txt

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
Apache Commons Codec 1.17.2 RELEASE NOTES
2+
-----------------------------------------
3+
4+
The Apache Commons Codec component contains encoders and decoders for
5+
formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these
6+
widely used encoders and decoders, the codec package also maintains a
7+
collection of phonetic encoding utilities.
8+
9+
This is a feature and maintenance release. Java 8 or later is required.
10+
11+
12+
Fixed Bugs
13+
----------
14+
15+
* Rewrite DaitchMokotoffSoundex.soundex(String) using String.join(). Thanks to Gary Gregory.
16+
* CODEC-324: Use Resource.class to load resources, rather than its class loader #353. Thanks to Michael Froh.
17+
* Deprecate CharSequenceUtils.CharSequenceUtils(). Thanks to Gary Gregory.
18+
* Deprecate Sha2Crypt.Sha2Crypt(). Thanks to Gary Gregory.
19+
20+
Changes
21+
-------
22+
23+
* Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.17.0 #296, #305, #313. Thanks to Dependabot.
24+
* Bump org.apache.commons:commons-parent from 71 to 78 #310, #312, #319, #323, #326, #333. Thanks to Gary Gregory.
25+
* [test] Bump commons-io:commons-io from 2.16.1 to 2.18.0 #318, #341. Thanks to Gary Gregory, Dependabot.
26+
* Bump org.codehaus.mojo:taglist-maven-plugin from 3.1.0 to 3.2.1 #332. Thanks to Gary Gregory, Dependabot.
27+
28+
29+
For complete information on Apache Commons Codec, including instructions on how to submit bug reports,
30+
patches, or suggestions for improvement, see the Apache Commons Codec website:
31+
32+
https://commons.apache.org/proper/commons-codec/
33+
34+
Download page: https://commons.apache.org/proper/commons-codec/download_codec.cgi
35+
36+
---------------------------------------------------------------------------------
37+
138
Apache Commons Codec 1.17.1 RELEASE NOTES
239
-----------------------------------------
340

@@ -9,7 +46,6 @@ collection of phonetic encoding utilities.
946
Feature and fix release. Requires a minimum of Java 8.
1047

1148

12-
1349
Fixed Bugs
1450
----------
1551

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ limitations under the License.
9393
<checkstyle.header.file>${basedir}/src/conf/checkstyle-header.txt</checkstyle.header.file>
9494
<checkstyle.config.file>${basedir}/src/conf/checkstyle.xml</checkstyle.config.file>
9595
<!-- Commons Release Plugin -->
96-
<commons.release.version>1.17.1</commons.release.version>
97-
<commons.bc.version>1.17.0</commons.bc.version>
98-
<commons.bc.next>1.17.2</commons.bc.next>
96+
<commons.release.version>1.17.2</commons.release.version>
97+
<commons.bc.version>1.17.1</commons.bc.version>
98+
<commons.release.next>1.17.3</commons.release.next>
9999
<commons.rc.version>RC1</commons.rc.version>
100100
<commons.release.isDistModule>true</commons.release.isDistModule>
101101
<commons.distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}</commons.distSvnStagingUrl>

src/changes/changes.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The <action> type attribute can be add,update,fix,remove.
4343
<author>Apache Commons Developers</author>
4444
</properties>
4545
<body>
46-
<release version="1.17.2" date="YYYY-MM-DD" description="This is a feature and maintenance release. Java 8 or later is required.">
46+
<release version="1.17.2" date="2024-12-28" description="This is a feature and maintenance release. Java 8 or later is required.">
4747
<!-- FIX -->
4848
<action type="fix" dev="ggregory" due-to="Gary Gregory">Rewrite DaitchMokotoffSoundex.soundex(String) using String.join().</action>
4949
<action type="fix" issue="CODEC-324" dev="ggregory" due-to="Michael Froh">Use Resource.class to load resources, rather than its class loader #353.</action>

src/site/xdoc/download_codec.xml

+13-13
Original file line numberDiff line numberDiff line change
@@ -113,32 +113,32 @@ limitations under the License.
113113
</p>
114114
</subsection>
115115
</section>
116-
<section name="Apache Commons Codec 1.17.1 ">
116+
<section name="Apache Commons Codec 1.17.2 ">
117117
<subsection name="Binaries">
118118
<table>
119119
<tr>
120-
<td><a href="[preferred]/commons/codec/binaries/commons-codec-1.17.1-bin.tar.gz">commons-codec-1.17.1-bin.tar.gz</a></td>
121-
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.1-bin.tar.gz.sha512">sha512</a></td>
122-
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.1-bin.tar.gz.asc">pgp</a></td>
120+
<td><a href="[preferred]/commons/codec/binaries/commons-codec-1.17.2-bin.tar.gz">commons-codec-1.17.2-bin.tar.gz</a></td>
121+
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.2-bin.tar.gz.sha512">sha512</a></td>
122+
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.2-bin.tar.gz.asc">pgp</a></td>
123123
</tr>
124124
<tr>
125-
<td><a href="[preferred]/commons/codec/binaries/commons-codec-1.17.1-bin.zip">commons-codec-1.17.1-bin.zip</a></td>
126-
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.1-bin.zip.sha512">sha512</a></td>
127-
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.1-bin.zip.asc">pgp</a></td>
125+
<td><a href="[preferred]/commons/codec/binaries/commons-codec-1.17.2-bin.zip">commons-codec-1.17.2-bin.zip</a></td>
126+
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.2-bin.zip.sha512">sha512</a></td>
127+
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.2-bin.zip.asc">pgp</a></td>
128128
</tr>
129129
</table>
130130
</subsection>
131131
<subsection name="Source">
132132
<table>
133133
<tr>
134-
<td><a href="[preferred]/commons/codec/source/commons-codec-1.17.1-src.tar.gz">commons-codec-1.17.1-src.tar.gz</a></td>
135-
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.1-src.tar.gz.sha512">sha512</a></td>
136-
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.1-src.tar.gz.asc">pgp</a></td>
134+
<td><a href="[preferred]/commons/codec/source/commons-codec-1.17.2-src.tar.gz">commons-codec-1.17.2-src.tar.gz</a></td>
135+
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.2-src.tar.gz.sha512">sha512</a></td>
136+
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.2-src.tar.gz.asc">pgp</a></td>
137137
</tr>
138138
<tr>
139-
<td><a href="[preferred]/commons/codec/source/commons-codec-1.17.1-src.zip">commons-codec-1.17.1-src.zip</a></td>
140-
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.1-src.zip.sha512">sha512</a></td>
141-
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.1-src.zip.asc">pgp</a></td>
139+
<td><a href="[preferred]/commons/codec/source/commons-codec-1.17.2-src.zip">commons-codec-1.17.2-src.zip</a></td>
140+
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.2-src.zip.sha512">sha512</a></td>
141+
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.2-src.zip.asc">pgp</a></td>
142142
</tr>
143143
</table>
144144
</subsection>

0 commit comments

Comments
 (0)