Skip to content

Commit 8aa599b

Browse files
committed
Prepare for the next release candidate
1 parent 9c373bf commit 8aa599b

4 files changed

Lines changed: 61 additions & 17 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Apache Commons Build Plugin Maven Mojo
4545

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

@@ -74,7 +74,7 @@ Alternatively, you can pull it from the central Maven repositories:
7474
<dependency>
7575
<groupId>org.apache.commons</groupId>
7676
<artifactId>commons-build-plugin</artifactId>
77-
<version>1.16.0</version>
77+
<version>1.16.1</version>
7878
</dependency>
7979
```
8080

@@ -95,7 +95,7 @@ There are some guidelines which will make applying PRs easier for us:
9595
+ Respect the existing code style for each file.
9696
+ 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.
9797
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
98-
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
98+
+ Before you push a PR, run `mvn` (without arguments). This runs the default goal which contains all build checks.
9999
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
100100

101101
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).

RELEASE-NOTES.txt

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
Apache Commons Build Plugin Maven Mojo 1.16.1 RELEASE NOTES
2+
-----------------------------------------------------------
3+
4+
The Apache Commons team is pleased to announce Apache Commons Build Plugin Maven Mojo 1.16.1.
5+
6+
Apache Maven Mojo for Apache Commons Build tasks.
7+
8+
For example:
9+
mvn commons-build:download-page [-Dcommons.release.version=1.2.3]
10+
11+
To use a SNAPSHOT version (for testing and so on):
12+
mvn org.apache.commons:commons-build-plugin:1.14.0-SNAPSHOT:download-page [-Dcommons.release.version=1.2.3]
13+
14+
This is a feature and maintenance release. Java 8 or later is required.
15+
16+
Changes in this version include:
17+
18+
19+
Fixed Bugs
20+
----------
21+
22+
* Removed outdated social media link from README.md and CONTRIBUTING.md Thanks to Bernd Eckenfels.
23+
* Tweak README (grammar and clarity). See: https://github.com/apache/commons-lang/pull/1442 Thanks to seshathri044.
24+
* Fix Apache RAT plugin console warnings. Thanks to Gary Gregory.
25+
26+
Changes
27+
-------
28+
29+
* Bump org.apache.commons:commons-parent from 85 to 96 #391, #411, #412. Thanks to Dependabot, Gary Gregory.
30+
* Bump graalvm.version from 24.2.2 to 25.0.2 #390, #401. Thanks to Dependabot, Gary Gregory.
31+
* Bump org.apache.maven.plugin-tools:maven-script-ant from 3.15.1 to 3.15.2 #407. Thanks to Dependabot, Gary Gregory.
32+
* Bump org.apache.maven.plugin-tools:maven-plugin-tools-ant from 3.15.1 to 3.15.2 #405. Thanks to Dependabot, Gary Gregory.
33+
* Bump org.apache.maven.plugins:maven-plugin-plugin from 3.15.1 to 3.15.2 #408. Thanks to Dependabot, Gary Gregory.
34+
* Bump commons.maven.version from 3.9.11 to 3.9.12 #415. Thanks to Dependabot, Gary Gregory.
35+
36+
37+
For complete information on Apache Commons Build Plugin Maven Mojo, including instructions on how to submit bug reports,
38+
patches, or suggestions for improvement, see the Apache Commons Build Plugin Maven Mojo website:
39+
40+
https://commons.apache.org/proper/commons-build-plugin/
41+
42+
Download page: https://commons.apache.org/proper/commons-build-plugin/download_build-plugin.cgi
43+
44+
-----------------------------------------------------------------------------
145
Apache Commons Build Plugin Maven Mojo 1.16.0 RELEASE NOTES
246
-----------------------------------------------------------
347

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<author email="dev@commons.apache.org">Apache Commons Developers</author>
2727
</properties>
2828
<body>
29-
<release version="1.16.1" date="YYYY-MM-DD" description="This is a feature and maintenance release. Java 8 or later is required.">
29+
<release version="1.16.1" date="2026-01-25" description="This is a feature and maintenance release. Java 8 or later is required.">
3030
<!-- FIX -->
3131
<action type="fix" dev="ecki" due-to="Bernd Eckenfels">Removed outdated social media link from README.md and CONTRIBUTING.md</action>
3232
<action type="fix" dev="sebb" due-to="seshathri044">Tweak README (grammar and clarity). See: https://github.com/apache/commons-lang/pull/1442</action>

src/site/xdoc/download_build-plugin.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 Build Plugin Maven Mojo 1.16.0 ">
118+
<section name="Apache Commons Build Plugin Maven Mojo 1.16.1 ">
119119
<subsection name="Binaries">
120120
<table>
121121
<tr>
122-
<td><a href="[preferred]/commons/build-plugin/binaries/commons-build-plugin-1.16.0-bin.tar.gz">commons-build-plugin-1.16.0-bin.tar.gz</a></td>
123-
<td><a href="https://downloads.apache.org/commons/build-plugin/binaries/commons-build-plugin-1.16.0-bin.tar.gz.sha512">sha512</a></td>
124-
<td><a href="https://downloads.apache.org/commons/build-plugin/binaries/commons-build-plugin-1.16.0-bin.tar.gz.asc">pgp</a></td>
122+
<td><a href="[preferred]/commons/build-plugin/binaries/commons-build-plugin-1.16.1-bin.tar.gz">commons-build-plugin-1.16.1-bin.tar.gz</a></td>
123+
<td><a href="https://downloads.apache.org/commons/build-plugin/binaries/commons-build-plugin-1.16.1-bin.tar.gz.sha512">sha512</a></td>
124+
<td><a href="https://downloads.apache.org/commons/build-plugin/binaries/commons-build-plugin-1.16.1-bin.tar.gz.asc">pgp</a></td>
125125
</tr>
126126
<tr>
127-
<td><a href="[preferred]/commons/build-plugin/binaries/commons-build-plugin-1.16.0-bin.zip">commons-build-plugin-1.16.0-bin.zip</a></td>
128-
<td><a href="https://downloads.apache.org/commons/build-plugin/binaries/commons-build-plugin-1.16.0-bin.zip.sha512">sha512</a></td>
129-
<td><a href="https://downloads.apache.org/commons/build-plugin/binaries/commons-build-plugin-1.16.0-bin.zip.asc">pgp</a></td>
127+
<td><a href="[preferred]/commons/build-plugin/binaries/commons-build-plugin-1.16.1-bin.zip">commons-build-plugin-1.16.1-bin.zip</a></td>
128+
<td><a href="https://downloads.apache.org/commons/build-plugin/binaries/commons-build-plugin-1.16.1-bin.zip.sha512">sha512</a></td>
129+
<td><a href="https://downloads.apache.org/commons/build-plugin/binaries/commons-build-plugin-1.16.1-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/build-plugin/source/commons-build-plugin-1.16.0-src.tar.gz">commons-build-plugin-1.16.0-src.tar.gz</a></td>
137-
<td><a href="https://downloads.apache.org/commons/build-plugin/source/commons-build-plugin-1.16.0-src.tar.gz.sha512">sha512</a></td>
138-
<td><a href="https://downloads.apache.org/commons/build-plugin/source/commons-build-plugin-1.16.0-src.tar.gz.asc">pgp</a></td>
136+
<td><a href="[preferred]/commons/build-plugin/source/commons-build-plugin-1.16.1-src.tar.gz">commons-build-plugin-1.16.1-src.tar.gz</a></td>
137+
<td><a href="https://downloads.apache.org/commons/build-plugin/source/commons-build-plugin-1.16.1-src.tar.gz.sha512">sha512</a></td>
138+
<td><a href="https://downloads.apache.org/commons/build-plugin/source/commons-build-plugin-1.16.1-src.tar.gz.asc">pgp</a></td>
139139
</tr>
140140
<tr>
141-
<td><a href="[preferred]/commons/build-plugin/source/commons-build-plugin-1.16.0-src.zip">commons-build-plugin-1.16.0-src.zip</a></td>
142-
<td><a href="https://downloads.apache.org/commons/build-plugin/source/commons-build-plugin-1.16.0-src.zip.sha512">sha512</a></td>
143-
<td><a href="https://downloads.apache.org/commons/build-plugin/source/commons-build-plugin-1.16.0-src.zip.asc">pgp</a></td>
141+
<td><a href="[preferred]/commons/build-plugin/source/commons-build-plugin-1.16.1-src.zip">commons-build-plugin-1.16.1-src.zip</a></td>
142+
<td><a href="https://downloads.apache.org/commons/build-plugin/source/commons-build-plugin-1.16.1-src.zip.sha512">sha512</a></td>
143+
<td><a href="https://downloads.apache.org/commons/build-plugin/source/commons-build-plugin-1.16.1-src.zip.asc">pgp</a></td>
144144
</tr>
145145
</table>
146146
</subsection>

0 commit comments

Comments
 (0)