Skip to content

Commit 4d26c2d

Browse files
committed
Prepare for the next release candidate
1 parent eb479f3 commit 4d26c2d

File tree

4 files changed

+76
-67
lines changed

4 files changed

+76
-67
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ Apache Commons Text
4545

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

52-
Apache Commons Text is a set of utility functions and reusable components for the purpose of processing
53-
and manipulating text that should be of use in a Java environment.
52+
Apache Commons Text is a set of utility functions and reusable components for processing
53+
and manipulating text in a Java environment.
5454

5555
Documentation
5656
-------------
@@ -69,7 +69,7 @@ Alternatively, you can pull it from the central Maven repositories:
6969
<dependency>
7070
<groupId>org.apache.commons</groupId>
7171
<artifactId>commons-text</artifactId>
72-
<version>1.13.1</version>
72+
<version>1.14.0</version>
7373
</dependency>
7474
```
7575

@@ -91,7 +91,7 @@ There are some guidelines which will make applying PRs easier for us:
9191
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
9292
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
9393
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
94-
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false`
94+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
9595

9696
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
9797
You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).

RELEASE-NOTES.txt

Lines changed: 57 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,63 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616

17+
Apache Commons Text 1.14.0 Release Notes
18+
------------------------------------------------
19+
20+
The Apache Commons Text team is pleased to announce the release of Apache Commons Text 1.14.0.
21+
22+
Apache Commons Text is a set of utility functions and reusable components for processing
23+
and manipulating text in a Java environment.
24+
25+
Release 1.14.0. Requires Java 8 or above.
26+
27+
28+
New features
29+
------------
30+
31+
* Interface StringLookup now extends UnaryOperator<String>. Thanks to Gary Gregory.
32+
* Interface TextRandomProvider extends IntUnaryOperator. Thanks to Gary Gregory.
33+
* Add RandomStringGenerator.Builder.usingRandom(IntUnaryOperator). Thanks to Gary Gregory.
34+
* Add PMD check to default Maven goal. Thanks to Gary Gregory.
35+
* Add org.apache.commons.text.RandomStringGenerator.Builder.setAccumulate(boolean). Thanks to Gary Gregory.
36+
37+
Fixed Bugs
38+
----------
39+
40+
* Fix PMD UnnecessaryFullyQualifiedName in StringLookupFactory. Thanks to Gary Gregory.
41+
* Fix PMD UnnecessaryFullyQualifiedName in DefaultStringLookupsHolder. Thanks to Gary Gregory.
42+
* Fix PMD UnnecessaryFullyQualifiedName in PropertiesStringLookup. Thanks to Gary Gregory.
43+
* Fix PMD UnnecessaryFullyQualifiedName in JavaPlatformStringLookup. Thanks to Gary Gregory.
44+
* Fix PMD UnnecessaryFullyQualifiedName in StringSubstitutor. Thanks to Gary Gregory.
45+
* Fix PMD UnnecessaryFullyQualifiedName in StrSubstitutor. Thanks to Gary Gregory.
46+
* Fix PMD UnnecessaryFullyQualifiedName in AlphabetConverter. Thanks to Gary Gregory.
47+
* Fix PMD AvoidBranchingStatementAsLastInLoop in TextStringBuilder. Thanks to Gary Gregory.
48+
* Fix PMD AvoidBranchingStatementAsLastInLoop in StrBuilder. Thanks to Gary Gregory.
49+
* org.apache.commons.text.translate.LookupTranslator.LookupTranslator(Map CharSequence>) now throws NullPointerException instead of java.security.InvalidParameterException. Thanks to Gary Gregory.
50+
51+
Changes
52+
-------
53+
54+
* Bump org.apache.commons:commons-parent from 81 to 85 #668. Thanks to Dependabot, Gary Gregory.
55+
* Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to Gary Gregory.
56+
* Bump graalvm.version from 24.2.0 to 24.2.2 #665, #681. Thanks to Dependabot, Gary Gregory.
57+
* Bump commons.bytebuddy.version from 1.17.5 to 1.17.6 (#677). Thanks to Dependabot.
58+
* Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0 #680. Thanks to Dependabot.
59+
60+
61+
Historical list of changes: https://commons.apache.org/proper/commons-text/changes.html
62+
63+
For complete information on Apache Commons Text, including instructions on how to submit bug reports,
64+
patches, or suggestions for improvement, see the Apache Commons Text website:
65+
66+
https://commons.apache.org/proper/commons-text
67+
68+
Download page: https://commons.apache.org/proper/commons-text/download_text.cgi
69+
70+
Have fun!
71+
-Apache Commons Team
72+
73+
-----------------------------------------------------------------------------
1774

1875
Apache Commons Text 1.13.1 Release Notes
1976
----------------------------------------
@@ -53,22 +110,6 @@ Have fun!
53110

54111
-----------------------------------------------------------------------------
55112

56-
Licensed to the Apache Software Foundation (ASF) under one or more
57-
contributor license agreements. See the NOTICE file distributed with
58-
this work for additional information regarding copyright ownership.
59-
The ASF licenses this file to You under the Apache License, Version 2.0
60-
(the "License"); you may not use this file except in compliance with
61-
the License. You may obtain a copy of the License at
62-
63-
https://www.apache.org/licenses/LICENSE-2.0
64-
65-
Unless required by applicable law or agreed to in writing, software
66-
distributed under the License is distributed on an "AS IS" BASIS,
67-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
68-
See the License for the specific language governing permissions and
69-
limitations under the License.
70-
71-
72113
Apache Commons Text Version 1.13.0 Release Notes
73114
------------------------------------------------
74115

@@ -141,22 +182,6 @@ Have fun!
141182

142183
-----------------------------------------------------------------------------
143184

144-
Licensed to the Apache Software Foundation (ASF) under one or more
145-
contributor license agreements. See the NOTICE file distributed with
146-
this work for additional information regarding copyright ownership.
147-
The ASF licenses this file to You under the Apache License, Version 2.0
148-
(the "License"); you may not use this file except in compliance with
149-
the License. You may obtain a copy of the License at
150-
151-
https://www.apache.org/licenses/LICENSE-2.0
152-
153-
Unless required by applicable law or agreed to in writing, software
154-
distributed under the License is distributed on an "AS IS" BASIS,
155-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
156-
See the License for the specific language governing permissions and
157-
limitations under the License.
158-
159-
160185
Apache Commons Text Version 1.12.0 Release Notes
161186
------------------------------------------------
162187

@@ -206,22 +231,6 @@ Have fun!
206231

207232
-----------------------------------------------------------------------------
208233

209-
Licensed to the Apache Software Foundation (ASF) under one or more
210-
contributor license agreements. See the NOTICE file distributed with
211-
this work for additional information regarding copyright ownership.
212-
The ASF licenses this file to You under the Apache License, Version 2.0
213-
(the "License"); you may not use this file except in compliance with
214-
the License. You may obtain a copy of the License at
215-
216-
https://www.apache.org/licenses/LICENSE-2.0
217-
218-
Unless required by applicable law or agreed to in writing, software
219-
distributed under the License is distributed on an "AS IS" BASIS,
220-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
221-
See the License for the specific language governing permissions and
222-
limitations under the License.
223-
224-
225234
Apache Commons Text Version 1.11.0 Release Notes
226235
------------------------------------------------
227236

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 Text Changes</title>
4646
</properties>
4747
<body>
48-
<release version="1.14.0" date="YYYY-MM-DD" description="Release 1.14.0. Requires Java 8 or above.">
48+
<release version="1.14.0" date="2025-07-20" description="Release 1.14.0. Requires Java 8 or above.">
4949
<!-- FIX -->
5050
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix PMD UnnecessaryFullyQualifiedName in StringLookupFactory.</action>
5151
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix PMD UnnecessaryFullyQualifiedName in DefaultStringLookupsHolder.</action>

src/site/xdoc/download_text.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 Text 1.13.1 (Java 8+)">
118+
<section name="Apache Commons Text 1.14.0 (Java 8+)">
119119
<subsection name="Binaries">
120120
<table>
121121
<tr>
122-
<td><a href="[preferred]/commons/text/binaries/commons-text-1.13.1-bin.tar.gz">commons-text-1.13.1-bin.tar.gz</a></td>
123-
<td><a href="https://downloads.apache.org/commons/text/binaries/commons-text-1.13.1-bin.tar.gz.sha512">sha512</a></td>
124-
<td><a href="https://downloads.apache.org/commons/text/binaries/commons-text-1.13.1-bin.tar.gz.asc">pgp</a></td>
122+
<td><a href="[preferred]/commons/text/binaries/commons-text-1.14.0-bin.tar.gz">commons-text-1.14.0-bin.tar.gz</a></td>
123+
<td><a href="https://downloads.apache.org/commons/text/binaries/commons-text-1.14.0-bin.tar.gz.sha512">sha512</a></td>
124+
<td><a href="https://downloads.apache.org/commons/text/binaries/commons-text-1.14.0-bin.tar.gz.asc">pgp</a></td>
125125
</tr>
126126
<tr>
127-
<td><a href="[preferred]/commons/text/binaries/commons-text-1.13.1-bin.zip">commons-text-1.13.1-bin.zip</a></td>
128-
<td><a href="https://downloads.apache.org/commons/text/binaries/commons-text-1.13.1-bin.zip.sha512">sha512</a></td>
129-
<td><a href="https://downloads.apache.org/commons/text/binaries/commons-text-1.13.1-bin.zip.asc">pgp</a></td>
127+
<td><a href="[preferred]/commons/text/binaries/commons-text-1.14.0-bin.zip">commons-text-1.14.0-bin.zip</a></td>
128+
<td><a href="https://downloads.apache.org/commons/text/binaries/commons-text-1.14.0-bin.zip.sha512">sha512</a></td>
129+
<td><a href="https://downloads.apache.org/commons/text/binaries/commons-text-1.14.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/text/source/commons-text-1.13.1-src.tar.gz">commons-text-1.13.1-src.tar.gz</a></td>
137-
<td><a href="https://downloads.apache.org/commons/text/source/commons-text-1.13.1-src.tar.gz.sha512">sha512</a></td>
138-
<td><a href="https://downloads.apache.org/commons/text/source/commons-text-1.13.1-src.tar.gz.asc">pgp</a></td>
136+
<td><a href="[preferred]/commons/text/source/commons-text-1.14.0-src.tar.gz">commons-text-1.14.0-src.tar.gz</a></td>
137+
<td><a href="https://downloads.apache.org/commons/text/source/commons-text-1.14.0-src.tar.gz.sha512">sha512</a></td>
138+
<td><a href="https://downloads.apache.org/commons/text/source/commons-text-1.14.0-src.tar.gz.asc">pgp</a></td>
139139
</tr>
140140
<tr>
141-
<td><a href="[preferred]/commons/text/source/commons-text-1.13.1-src.zip">commons-text-1.13.1-src.zip</a></td>
142-
<td><a href="https://downloads.apache.org/commons/text/source/commons-text-1.13.1-src.zip.sha512">sha512</a></td>
143-
<td><a href="https://downloads.apache.org/commons/text/source/commons-text-1.13.1-src.zip.asc">pgp</a></td>
141+
<td><a href="[preferred]/commons/text/source/commons-text-1.14.0-src.zip">commons-text-1.14.0-src.zip</a></td>
142+
<td><a href="https://downloads.apache.org/commons/text/source/commons-text-1.14.0-src.zip.sha512">sha512</a></td>
143+
<td><a href="https://downloads.apache.org/commons/text/source/commons-text-1.14.0-src.zip.asc">pgp</a></td>
144144
</tr>
145145
</table>
146146
</subsection>

0 commit comments

Comments
 (0)