Skip to content

Commit bab52e3

Browse files
committed
Prepare for the next release candidate
1 parent 7c74c85 commit bab52e3

File tree

5 files changed

+59
-24
lines changed

5 files changed

+59
-24
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.8.3.svg)](https://javadoc.io/doc/org.apache.commons/commons-release-plugin/1.8.3)
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)
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.8.3</version>
71+
<version>1.9.0</version>
7272
</dependency>
7373
```
7474

RELEASE-NOTES.txt

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

2+
Apache Commons Release Plugin Version 1.9.0 Release Notes
3+
---------------------------------------------------------
4+
5+
This document contains the release notes for the 1.9.0 version of Apache Commons Release Plugin:
6+
An Apache Maven Mojo for Apache Commons Release tasks.
7+
8+
Apache Maven Mojo for Apache Commons Release tasks.
9+
10+
Version 1.9.0
11+
12+
13+
Changes
14+
-------
15+
16+
* Bump org.apache.commons:commons-build-plugin from 1.14.0 to 1.14.1 #341. Thanks to Dependabot, Gary Gregory.
17+
* Bump org.apache.commons:commons-collections4 from 4.5.0-M2 to 4.5.0-M3. Thanks to Gary Gregory.
18+
* maven-changes-plugin 3.0.0-M2 generate changes.html instead of changes-report.html (needs commons-parent 79). Thanks to Gary Gregory.
19+
* Bump commons-codec:commons-codec from 1.17.1 to 1.17.2. Thanks to Gary Gregory.
20+
* Bump org.apache.commons:commons-parent from 78 to 79, upgrades Doxia from 1 to 2. Thanks to Gary Gregory.
21+
22+
23+
Historical list of changes: https://commons.apache.org/proper/commons-release-plugin//changes-report.html
24+
25+
For complete information on Apache Commons Release Plugin, including instructions on how to submit bug reports,
26+
patches, or suggestions for improvement, see the Apache Commons Release Plugin website:
27+
28+
https://commons.apache.org/proper/commons-release-plugin/
29+
30+
Download page: https://commons.apache.org/proper/commons-release-plugin//download_release-plugin.cgi
31+
32+
Have fun!
33+
-Apache Commons Team
34+
35+
-----------------------------------------------------------------------------
36+
237
Apache Commons Release Plugin Version 1.8.3 Release Notes
338
---------------------------------------------------------
439

pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
<parent>
2222
<groupId>org.apache.commons</groupId>
2323
<artifactId>commons-parent</artifactId>
24-
<version>78</version>
24+
<version>79</version>
2525
</parent>
2626
<artifactId>commons-release-plugin</artifactId>
2727
<packaging>maven-plugin</packaging>
28-
<version>1.8.4-SNAPSHOT</version>
28+
<version>1.9.0-SNAPSHOT</version>
2929
<name>Apache Commons Release Plugin</name>
3030

3131
<description>
@@ -126,11 +126,10 @@
126126
<!-- This is used by reporting plugins -->
127127
<project.reporting.outputEncoding>${commons.encoding}</project.reporting.outputEncoding>
128128
<project.build.outputTimestamp>2024-11-09T12:49:32Z</project.build.outputTimestamp>
129-
130129
<commons.release.isDistModule>true</commons.release.isDistModule>
131-
<commons.bc.version>1.8.2</commons.bc.version>
132-
<commons.release.version>1.8.3</commons.release.version>
133-
<commons.release.next>1.8.4</commons.release.next>
130+
<commons.release.version>1.9.0</commons.release.version>
131+
<commons.release.next>1.9.1</commons.release.next>
132+
<commons.bc.version>1.8.3</commons.bc.version>
134133
<commons.rc.version>RC1</commons.rc.version>
135134
<commons.release.isDistModule>true</commons.release.isDistModule>
136135
<!--

src/changes/changes.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,21 @@
1616
limitations under the License.
1717
-->
1818
<!-- Description: http://maven.apache.org/plugins/maven-changes-plugin/changes.html -->
19-
<document xmlns="http://maven.apache.org/changes/1.0.0"
19+
<document xmlns="http://maven.apache.org/changes/2.0.0"
2020
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21-
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
21+
xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 http://maven.apache.org/xsd/changes-2.0.0.xsd">
2222
<properties>
2323
<title>Apache Commons Release Plugin Changes</title>
2424
<author email="[email protected]">Apache Commons Developers</author>
2525
</properties>
2626
<body>
27-
<release version="1.8.4" date="YYYY-MM-DD" description="Version 1.8.4">
27+
<release version="1.9.0" date="2025-01-08" description="Version 1.9.0">
2828
<!-- UPDATES -->
2929
<action type="update" dev="ggregory" due-to="Dependabot, Gary Gregory">Bump org.apache.commons:commons-build-plugin from 1.14.0 to 1.14.1 #341.</action>
3030
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-collections4 from 4.5.0-M2 to 4.5.0-M3.</action>
3131
<action type="update" dev="ggregory" due-to="Gary Gregory">maven-changes-plugin 3.0.0-M2 generate changes.html instead of changes-report.html (needs commons-parent 79).</action>
3232
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump commons-codec:commons-codec from 1.17.1 to 1.17.2.</action>
33+
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 78 to 79, upgrades Doxia from 1 to 2.</action>
3334
</release>
3435
<release version="1.8.3" date="2024-11-03" description="Version 1.8.3">
3536
<!-- UPDATES -->

src/site/xdoc/download_release-plugin.xml

Lines changed: 13 additions & 13 deletions
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 Release Plugin 1.8.3 ">
116+
<section name="Apache Commons Release Plugin 1.9.0 ">
117117
<subsection name="Binaries">
118118
<table>
119119
<tr>
120-
<td><a href="[preferred]/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.tar.gz">commons-release-plugin-1.8.3-bin.tar.gz</a></td>
121-
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.tar.gz.sha512">sha512</a></td>
122-
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.tar.gz.asc">pgp</a></td>
120+
<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>
121+
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.tar.gz.sha512">sha512</a></td>
122+
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.tar.gz.asc">pgp</a></td>
123123
</tr>
124124
<tr>
125-
<td><a href="[preferred]/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.zip">commons-release-plugin-1.8.3-bin.zip</a></td>
126-
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.zip.sha512">sha512</a></td>
127-
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.zip.asc">pgp</a></td>
125+
<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>
126+
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.0-bin.zip.sha512">sha512</a></td>
127+
<td><a href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.9.0-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/release-plugin/source/commons-release-plugin-1.8.3-src.tar.gz">commons-release-plugin-1.8.3-src.tar.gz</a></td>
135-
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.3-src.tar.gz.sha512">sha512</a></td>
136-
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.3-src.tar.gz.asc">pgp</a></td>
134+
<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>
135+
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.0-src.tar.gz.sha512">sha512</a></td>
136+
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.0-src.tar.gz.asc">pgp</a></td>
137137
</tr>
138138
<tr>
139-
<td><a href="[preferred]/commons/release-plugin/source/commons-release-plugin-1.8.3-src.zip">commons-release-plugin-1.8.3-src.zip</a></td>
140-
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.3-src.zip.sha512">sha512</a></td>
141-
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.3-src.zip.asc">pgp</a></td>
139+
<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>
140+
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.0-src.zip.sha512">sha512</a></td>
141+
<td><a href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.9.0-src.zip.asc">pgp</a></td>
142142
</tr>
143143
</table>
144144
</subsection>

0 commit comments

Comments
 (0)