Skip to content

Commit 32d7183

Browse files
committed
Prepare for the next release candidate
1 parent 3752181 commit 32d7183

File tree

6 files changed

+67
-25
lines changed

6 files changed

+67
-25
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@
4141
Contributing to Apache Commons Release Plugin
4242
======================
4343

44-
You have found a bug or you have an idea for a cool new feature? Contributing code is a great way to give something back to
45-
the open source community. Before you dig right into the code there are a few guidelines that we need contributors to
46-
follow so that we can have a chance of keeping on top of things.
44+
Have you found a bug or have an idea for a cool new feature? Contributing code is a great way to give something back to the open-source community.
45+
Before you dig right into the code, we need contributors to follow a few guidelines to have a chance of keeping on top of things.
4746

4847
Getting Started
4948
---------------
@@ -62,7 +61,7 @@ Making Changes
6261

6362
+ Create a _topic branch_ for your isolated work.
6463
* Usually you should base your branch on the `master` branch.
65-
* A good topic branch name can be the JIRA bug id plus a keyword, e.g. `COMMONSSITE-123-InputStream`.
64+
* A good topic branch name can be the JIRA bug ID plus a keyword, e.g. `COMMONSSITE-123-InputStream`.
6665
* If you have submitted multiple JIRA issues, try to maintain separate branches and pull requests.
6766
+ Make commits of logical units.
6867
* Make sure your commit messages are meaningful and in the proper format. Your commit message should contain the key of the JIRA issue.
@@ -72,7 +71,7 @@ Making Changes
7271
+ 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.
7372
+ Check for unnecessary whitespace with `git diff` -- check before committing.
7473
+ Make sure you have added the necessary tests for your changes, typically in `src/test/java`.
75-
+ Run all the tests with `mvn clean verify` to assure nothing else was accidentally broken.
74+
+ Run all the tests with `mvn clean verify` to ensure nothing else was accidentally broken.
7675

7776
Making Trivial Changes
7877
----------------------

README.md

Lines changed: 7 additions & 5 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.2.svg)](https://javadoc.io/doc/org.apache.commons/commons-release-plugin/1.8.2)
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)
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

@@ -62,20 +62,20 @@ Getting the latest release
6262
--------------------------
6363
You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-release-plugin/download_release-plugin.cgi).
6464

65-
Alternatively, you can pull it from the central Maven repositories:
65+
Alternatively, you can pull it from the central Maven repositories:
6666

6767
```xml
6868
<dependency>
6969
<groupId>org.apache.commons</groupId>
7070
<artifactId>commons-release-plugin</artifactId>
71-
<version>1.8.2</version>
71+
<version>1.8.3</version>
7272
</dependency>
7373
```
7474

7575
Building
7676
--------
7777

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

8181
From a command shell, run `mvn` without arguments to invoke the default Maven goal to run all tests and checks.
@@ -88,7 +88,9 @@ There are some guidelines which will make applying PRs easier for us:
8888
+ No tabs! Please use spaces for indentation.
8989
+ Respect the existing code style for each file.
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.
91-
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn```.
91+
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
92+
+ 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`
9294

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

RELEASE-NOTES.txt

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

2+
Apache Commons Release Plugin Version 1.8.3 Release Notes
3+
---------------------------------------------------------
4+
5+
This document contains the release notes for the 1.8.3 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.8.3
11+
12+
Changes
13+
-------
14+
15+
* Bump org.apache.commons:commons-parent from 69 to 78 #278, #285, #307, #311, #316, #321, #324, #333. Thanks to Dependabot.
16+
* Bump maven-scm.version from 2.0.1 to 2.1.0 #263. Thanks to Dependabot.
17+
* Bump commons-codec:commons-codec from 1.16.1 to 1.17.1 #295. Thanks to Dependabot.
18+
* Bump org.apache.commons:commons-compress 1.26.1 to 1.27.1 #300, #308. Thanks to Gary Gregory.
19+
* Bump maven.dependency.version from 3.9.6 to 3.9.9 #281, #290, #306. Thanks to Dependabot.
20+
* Bump maven.plugin.version from 3.13.0 to 3.15.1 #282, #305, #310, #340. Thanks to Dependabot.
21+
* Bump org.apache.maven.plugins:maven-pmd-plugin from 3.22.0 to 3.23.0 #284. Thanks to Dependabot.
22+
* Bump org.apache.commons:commons-collections4 from 4.5.0-M1 to 4.5.0-M2 #289. Thanks to Dependabot.
23+
* Bump org.codehaus.mojo:taglist-maven-plugin from 3.0.0 to 3.2.1 #291, #331. Thanks to Dependabot.
24+
* Bump commons-io:commons-io from 2.16.1 to 2.17.0 #315. Thanks to Dependabot.
25+
* Bump org.apache.velocity:velocity-engine-core from 2.3 to 2.4.1 #318, #332. Thanks to Dependabot.
26+
* Bump org.codehaus.plexus:plexus-velocity from 2.1.0 to 2.2.0 #325. Thanks to Dependabot.
27+
28+
29+
Historical list of changes: https://commons.apache.org/proper/commons-release-plugin//changes-report.html
30+
31+
For complete information on Apache Commons Release Plugin, including instructions on how to submit bug reports,
32+
patches, or suggestions for improvement, see the Apache Commons Release Plugin website:
33+
34+
https://commons.apache.org/proper/commons-release-plugin/
35+
36+
Download page: https://commons.apache.org/proper/commons-release-plugin//download_release-plugin.cgi
37+
38+
Have fun!
39+
-Apache Commons Team
40+
41+
-----------------------------------------------------------------------------
42+
243
Apache Commons Release Plugin Version 1.8.2 Release Notes
344
---------------------------------------------------------
445

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@
128128
<project.build.outputTimestamp>2024-04-19T14:42:04Z</project.build.outputTimestamp>
129129

130130
<commons.release.isDistModule>true</commons.release.isDistModule>
131+
<commons.bc.version>1.8.2</commons.bc.version>
131132
<commons.release.version>1.8.3</commons.release.version>
132133
<commons.release.next>1.8.4</commons.release.next>
133-
<commons.bc.version>1.8.2</commons.bc.version>
134134
<commons.rc.version>RC1</commons.rc.version>
135135
<commons.release.isDistModule>true</commons.release.isDistModule>
136136
<!--

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.8.3" date="YYYY-MM-DD" description="Version 1.8.3">
27+
<release version="1.8.3" date="2024-11-03" description="Version 1.8.3">
2828
<!-- UPDATES -->
2929
<action type="update" dev="ggregory" due-to="Dependabot">Bump org.apache.commons:commons-parent from 69 to 78 #278, #285, #307, #311, #316, #321, #324, #333.</action>
3030
<action type="update" dev="ggregory" due-to="Dependabot">Bump maven-scm.version from 2.0.1 to 2.1.0 #263.</action>

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

0 commit comments

Comments
 (0)