Skip to content

Commit 05cec2b

Browse files
committed
Prepare for the next release candidate
1 parent 0735a3d commit 05cec2b

File tree

8 files changed

+75
-31
lines changed

8 files changed

+75
-31
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(the "License"); you may not use this file except in compliance with
77
the License. You may obtain a copy of the License at
88
9-
http://www.apache.org/licenses/LICENSE-2.0
9+
https://www.apache.org/licenses/LICENSE-2.0
1010
1111
Unless required by applicable law or agreed to in writing, software
1212
distributed under the License is distributed on an "AS IS" BASIS,
@@ -61,11 +61,11 @@ Making Changes
6161

6262
+ Create a _topic branch_ for your isolated work.
6363
* Usually you should base your branch from the `master` branch.
64-
* A good topic branch name can be the JIRA bug ID plus a keyword, for example, `COMMONSSITE-123-InputStream`.
64+
* A good topic branch name can be the JIRA bug ID plus a keyword, e.g. `COMMONSSITE-123-InputStream`.
6565
* If you have submitted multiple JIRA issues, try to maintain separate branches and pull requests.
6666
+ Make commits of logical units.
6767
* Make sure your commit messages are meaningful and in the proper format. Your commit message should contain the key of the JIRA issue.
68-
* For example, `[COMMONSSITE-123] Close input stream earlier`
68+
* For example, `[COMMONSSITE-123] Close input stream sooner`
6969
+ Respect the original code style:
7070
+ Only use spaces for indentation; you can check for unnecessary whitespace with `git diff` before committing.
7171
+ 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 first.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(the "License"); you may not use this file except in compliance with
77
the License. You may obtain a copy of the License at
88
9-
http://www.apache.org/licenses/LICENSE-2.0
9+
https://www.apache.org/licenses/LICENSE-2.0
1010
1111
Unless required by applicable law or agreed to in writing, software
1212
distributed under the License is distributed on an "AS IS" BASIS,
@@ -45,7 +45,7 @@ Apache Commons Release Plugin
4545

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

@@ -68,7 +68,7 @@ Alternatively, you can pull it from the central Maven repositories:
6868
<dependency>
6969
<groupId>org.apache.commons</groupId>
7070
<artifactId>commons-release-plugin</artifactId>
71-
<version>1.9.0</version>
71+
<version>1.9.1</version>
7272
</dependency>
7373
```
7474

@@ -90,7 +90,7 @@ There are some guidelines which will make applying PRs easier for us:
9090
+ 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.
9191
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
9292
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
93-
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false`
93+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
9494

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

RELEASE-NOTES.txt

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
Apache Commons Release Plugin 1.9.1 Release Notes
2+
------------------------------------------------
3+
4+
The Apache Commons Release Plugin team is pleased to announce the release of Apache Commons Release Plugin 1.9.1.
5+
6+
This document contains the release notes for Apache Commons Release Plugin.
7+
8+
Apache Maven Mojo for Apache Commons Release tasks.
9+
10+
Version 1.9.1.
11+
12+
13+
14+
Fixed Bugs
15+
----------
16+
17+
* Migrate site generation templates to https://maven.apache.org/xsd/xdoc-2.0.xsd. Thanks to Gary Gregory.
18+
* Remove -nouses directive from maven-bundle-plugin. OSGi package imports now state 'uses' definitions for package imports, this doesn't affect JPMS (from org.apache.commons:commons-parent:80). Thanks to Gary Gregory.
19+
20+
Changes
21+
-------
22+
23+
* Bump org.apache.commons:commons-parent from 79 to 85 #376. Thanks to Gary Gregory, Dependabot.
24+
* Bump org.apache.commons:commons-build-plugin from 1.14.1 to 1.16.0 #355. Thanks to Dependabot, Arnout Engelen, Gary Greggory.
25+
* Bump commons-codec:commons-codec from 1.17.2 to 1.19.0 #357. Thanks to Dependabot, Gary Gregory.
26+
* Bump org.codehaus.plexus:plexus-velocity from 2.2.0 to 2.2.1 #372. Thanks to Dependabot, Gary Gregory.
27+
* Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to Gary Gregory, Dependabot.
28+
* Bump org.apache.commons:commons-collections4 from 4.5.0-M3 to 4.5.0. Thanks to Gary Gregory.
29+
* Bump maven.dependency.version from 3.9.9 to 3.9.11 #383. Thanks to Gary Gregory, Dependabot.
30+
31+
32+
Historical list of changes: https://commons.apache.org/proper/commons-release-plugin//changes.html
33+
34+
For complete information on Apache Commons Release Plugin, including instructions on how to submit bug reports,
35+
patches, or suggestions for improvement, see the Apache Commons Release Plugin website:
36+
37+
https://commons.apache.org/proper/commons-release-plugin/
38+
39+
Download page: https://commons.apache.org/proper/commons-release-plugin//download_release-plugin.cgi
40+
41+
Have fun!
42+
-Apache Commons Team
43+
44+
-----------------------------------------------------------------------------
145

246
Apache Commons Release Plugin 1.9.0 Release Notes
347
-------------------------------------------------

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@
8686
<project.reporting.outputEncoding>${commons.encoding}</project.reporting.outputEncoding>
8787
<project.build.outputTimestamp>2025-01-11T13:42:12Z</project.build.outputTimestamp>
8888
<commons.release.isDistModule>true</commons.release.isDistModule>
89-
<commons.release.version>1.9.0</commons.release.version>
90-
<commons.release.next>1.9.1</commons.release.next>
91-
<commons.bc.version>1.8.3</commons.bc.version>
89+
<commons.release.version>1.9.1</commons.release.version>
90+
<commons.release.next>1.9.2</commons.release.next>
91+
<commons.bc.version>1.9.0</commons.bc.version>
9292
<commons.rc.version>RC1</commons.rc.version>
9393
<commons.release.isDistModule>true</commons.release.isDistModule>
9494
<!--

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<author email="[email protected]">Apache Commons Developers</author>
2525
</properties>
2626
<body>
27-
<release version="1.9.1" date="YYYY-MM-DD" description="Version 1.9.1.">
27+
<release version="1.9.1" date="2025-07-22" description="Version 1.9.1.">
2828
<!-- FIX -->
2929
<action type="fix" dev="ggregory" due-to="Gary Gregory">Migrate site generation templates to https://maven.apache.org/xsd/xdoc-2.0.xsd.</action>
3030
<action type="fix" dev="ggregory" due-to="Gary Gregory">Remove -nouses directive from maven-bundle-plugin. OSGi package imports now state 'uses' definitions for package imports, this doesn't affect JPMS (from org.apache.commons:commons-parent:80).</action>

src/site/xdoc/download_release-plugin.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The ASF licenses this file to You under the Apache License, Version 2.0
77
(the "License"); you may not use this file except in compliance with
88
the License. You may obtain a copy of the License at
99
10-
http://www.apache.org/licenses/LICENSE-2.0
10+
https://www.apache.org/licenses/LICENSE-2.0
1111
1212
Unless required by applicable law or agreed to in writing, software
1313
distributed under the License is distributed on an "AS IS" BASIS,
@@ -61,7 +61,7 @@ limitations under the License.
6161
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
6262
<properties>
6363
<title>Download Apache Commons Release Plugin</title>
64-
<author email="[email protected]">Apache Commons Documentation Team</author>
64+
<author email="[email protected]">Apache Commons Team</author>
6565
</properties>
6666
<body>
6767
<section name="Download Apache Commons Release Plugin">
@@ -81,7 +81,7 @@ limitations under the License.
8181
mirrors (at the end of the mirrors list) that should be
8282
available.
8383
<br></br>
84-
[if-any logo]<a href="[link]"><img align="right" src="[logo]" border="0"></img></a>[end]
84+
[if-any logo]<a href="[link]"><img align="right" src="[logo]" border="0" alt="Logo"></img></a>[end]
8585
</p>
8686

8787
<form action="[location]" method="get" id="SelectMirror">
@@ -115,32 +115,32 @@ limitations under the License.
115115
</p>
116116
</subsection>
117117
</section>
118-
<section name="Apache Commons Release Plugin 1.9.0 ">
118+
<section name="Apache Commons Release Plugin 1.9.1 ">
119119
<subsection name="Binaries">
120120
<table>
121121
<tr>
122-
<td><a href="[preferred]/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.tar.gz">commons-release-plugin-1.9.0-bin.tar.gz</a></td>
123-
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.tar.gz.sha512">sha512</a></td>
124-
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.tar.gz.asc">pgp</a></td>
122+
<td><a href="[preferred]/commons/release-plugin/binaries/commons-release-plugin-1.9.1-bin.tar.gz">commons-release-plugin-1.9.1-bin.tar.gz</a></td>
123+
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.1-bin.tar.gz.sha512">sha512</a></td>
124+
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.1-bin.tar.gz.asc">pgp</a></td>
125125
</tr>
126126
<tr>
127-
<td><a href="[preferred]/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.zip">commons-release-plugin-1.9.0-bin.zip</a></td>
128-
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.zip.sha512">sha512</a></td>
129-
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.zip.asc">pgp</a></td>
127+
<td><a href="[preferred]/commons/release-plugin/binaries/commons-release-plugin-1.9.1-bin.zip">commons-release-plugin-1.9.1-bin.zip</a></td>
128+
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.1-bin.zip.sha512">sha512</a></td>
129+
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.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/release-plugin/source/commons-release-plugin-1.9.0-src.tar.gz">commons-release-plugin-1.9.0-src.tar.gz</a></td>
137-
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.0-src.tar.gz.sha512">sha512</a></td>
138-
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.0-src.tar.gz.asc">pgp</a></td>
136+
<td><a href="[preferred]/commons/release-plugin/source/commons-release-plugin-1.9.1-src.tar.gz">commons-release-plugin-1.9.1-src.tar.gz</a></td>
137+
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.1-src.tar.gz.sha512">sha512</a></td>
138+
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.1-src.tar.gz.asc">pgp</a></td>
139139
</tr>
140140
<tr>
141-
<td><a href="[preferred]/commons/release-plugin/source/commons-release-plugin-1.9.0-src.zip">commons-release-plugin-1.9.0-src.zip</a></td>
142-
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.0-src.zip.sha512">sha512</a></td>
143-
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.0-src.zip.asc">pgp</a></td>
141+
<td><a href="[preferred]/commons/release-plugin/source/commons-release-plugin-1.9.1-src.zip">commons-release-plugin-1.9.1-src.zip</a></td>
142+
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.1-src.zip.sha512">sha512</a></td>
143+
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.1-src.zip.asc">pgp</a></td>
144144
</tr>
145145
</table>
146146
</subsection>

src/site/xdoc/issue-tracking.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The ASF licenses this file to You under the Apache License, Version 2.0
77
(the "License"); you may not use this file except in compliance with
88
the License. You may obtain a copy of the License at
99
10-
http://www.apache.org/licenses/LICENSE-2.0
10+
https://www.apache.org/licenses/LICENSE-2.0
1111
1212
Unless required by applicable law or agreed to in writing, software
1313
distributed under the License is distributed on an "AS IS" BASIS,
@@ -46,7 +46,7 @@ limitations under the License.
4646
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
4747
<properties>
4848
<title>Apache Commons Release Plugin Issue tracking</title>
49-
<author email="[email protected]">Apache Commons Documentation Team</author>
49+
<author email="[email protected]">Apache Commons Team</author>
5050
</properties>
5151
<body>
5252

src/site/xdoc/mail-lists.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The ASF licenses this file to You under the Apache License, Version 2.0
77
(the "License"); you may not use this file except in compliance with
88
the License. You may obtain a copy of the License at
99
10-
http://www.apache.org/licenses/LICENSE-2.0
10+
https://www.apache.org/licenses/LICENSE-2.0
1111
1212
Unless required by applicable law or agreed to in writing, software
1313
distributed under the License is distributed on an "AS IS" BASIS,
@@ -44,7 +44,7 @@ limitations under the License.
4444
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
4545
<properties>
4646
<title>Apache Commons Release Plugin Mailing Lists</title>
47-
<author email="[email protected]">Apache Commons Documentation Team</author>
47+
<author email="[email protected]">Apache Commons Team</author>
4848
</properties>
4949
<body>
5050

0 commit comments

Comments
 (0)