This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 32d7183  Prepare for the next release candidate
32d7183 is described below

commit 32d7183c651d5ee2697475a7aad00684eb2a8b30
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Nov 3 20:01:58 2024 +0000

    Prepare for the next release candidate
---
 CONTRIBUTING.md                           |  9 +++----
 README.md                                 | 12 +++++----
 RELEASE-NOTES.txt                         | 41 +++++++++++++++++++++++++++++++
 pom.xml                                   |  2 +-
 src/changes/changes.xml                   |  2 +-
 src/site/xdoc/download_release-plugin.xml | 26 ++++++++++----------
 6 files changed, 67 insertions(+), 25 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index bca13b4..11460f9 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -41,9 +41,8 @@
 Contributing to Apache Commons Release Plugin
 ======================
 
-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
-the open source community. Before you dig right into the code there are a few 
guidelines that we need contributors to
-follow so that we can have a chance of keeping on top of things.
+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.
+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.
 
 Getting Started
 ---------------
@@ -62,7 +61,7 @@ Making Changes
 
 + Create a _topic branch_ for your isolated work.
   * Usually you should base your branch on the `master` branch.
-  * A good topic branch name can be the JIRA bug id plus a keyword, e.g. 
`COMMONSSITE-123-InputStream`.
+  * A good topic branch name can be the JIRA bug ID plus a keyword, e.g. 
`COMMONSSITE-123-InputStream`.
   * If you have submitted multiple JIRA issues, try to maintain separate 
branches and pull requests.
 + Make commits of logical units.
   * 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
   + 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.
   + Check for unnecessary whitespace with `git diff` -- check before 
committing.
 + Make sure you have added the necessary tests for your changes, typically in 
`src/test/java`.
-+ Run all the tests with `mvn clean verify` to assure nothing else was 
accidentally broken.
++ Run all the tests with `mvn clean verify` to ensure nothing else was 
accidentally broken.
 
 Making Trivial Changes
 ----------------------
diff --git a/README.md b/README.md
index de4c90c..2d18de8 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Apache Commons Release Plugin
 
 [![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)
 [![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)
-[![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)
+[![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)
 
[![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)
 [![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)
 
@@ -62,20 +62,20 @@ Getting the latest release
 --------------------------
 You can download source and binaries from our [download 
page](https://commons.apache.org/proper/commons-release-plugin/download_release-plugin.cgi).
 
-Alternatively, you can pull it from  the central Maven repositories:
+Alternatively, you can pull it from the central Maven repositories:
 
 ```xml
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-release-plugin</artifactId>
-  <version>1.8.2</version>
+  <version>1.8.3</version>
 </dependency>
 ```
 
 Building
 --------
 
-Building requires a Java JDK and [Apache Maven](https://maven.apache.org/). 
+Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
 The required Java version is found in the `pom.xml` as the 
`maven.compiler.source` property.
 
 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:
 + No tabs! Please use spaces for indentation.
 + Respect the existing code style for each file.
 + 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.
-+ Provide JUnit tests for your changes and make sure your changes don't break 
any existing tests by running ```mvn```.
++ Provide JUnit tests for your changes and make sure your changes don't break 
any existing tests by running `mvn`.
++ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, 
which contains all build checks.
++ To see the code coverage report, regardless of coverage failures, run `mvn 
clean site -Dcommons.jacoco.haltOnFailure=false`
 
 If you plan to contribute on a regular basis, please consider filing a 
[contributor license agreement](https://www.apache.org/licenses/#clas).
 You can learn more about contributing via GitHub in our [contribution 
guidelines](CONTRIBUTING.md).
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 3bfa607..e12f7cd 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,4 +1,45 @@
 
+Apache Commons Release Plugin Version 1.8.3 Release Notes
+---------------------------------------------------------
+
+This document contains the release notes for the 1.8.3 version of Apache 
Commons Release Plugin: 
+An Apache Maven Mojo for Apache Commons Release tasks.
+
+Apache Maven Mojo for Apache Commons Release tasks.
+
+Version 1.8.3
+
+Changes
+-------
+
+*                   Bump org.apache.commons:commons-parent from 69 to 78 #278, 
#285, #307, #311, #316, #321, #324, #333. Thanks to Dependabot.
+*                   Bump maven-scm.version from 2.0.1 to 2.1.0 #263. Thanks to 
Dependabot.
+*                   Bump commons-codec:commons-codec from 1.16.1 to 1.17.1 
#295. Thanks to Dependabot.
+*                   Bump org.apache.commons:commons-compress 1.26.1 to 1.27.1 
#300, #308. Thanks to Gary Gregory.
+*                   Bump maven.dependency.version from 3.9.6 to 3.9.9 #281, 
#290, #306. Thanks to Dependabot.
+*                   Bump maven.plugin.version from 3.13.0 to 3.15.1 #282, 
#305, #310, #340. Thanks to Dependabot.
+*                   Bump org.apache.maven.plugins:maven-pmd-plugin from 3.22.0 
to 3.23.0 #284. Thanks to Dependabot.
+*                   Bump org.apache.commons:commons-collections4 from 4.5.0-M1 
to 4.5.0-M2 #289. Thanks to Dependabot.
+*                   Bump org.codehaus.mojo:taglist-maven-plugin from 3.0.0 to 
3.2.1 #291, #331. Thanks to Dependabot.
+*                   Bump commons-io:commons-io from 2.16.1 to 2.17.0 #315. 
Thanks to Dependabot.
+*                   Bump org.apache.velocity:velocity-engine-core from 2.3 to 
2.4.1 #318, #332. Thanks to Dependabot.
+*                   Bump org.codehaus.plexus:plexus-velocity from 2.1.0 to 
2.2.0 #325. Thanks to Dependabot.
+
+
+Historical list of changes: 
https://commons.apache.org/proper/commons-release-plugin//changes-report.html
+
+For complete information on Apache Commons Release Plugin, including 
instructions on how to submit bug reports,
+patches, or suggestions for improvement, see the Apache Commons Release Plugin 
website:
+
+https://commons.apache.org/proper/commons-release-plugin/
+
+Download page: 
https://commons.apache.org/proper/commons-release-plugin//download_release-plugin.cgi
+
+Have fun!
+-Apache Commons Team
+
+-----------------------------------------------------------------------------
+
 Apache Commons Release Plugin Version 1.8.2 Release Notes
 ---------------------------------------------------------
 
diff --git a/pom.xml b/pom.xml
index 887ab94..5c2755a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -128,9 +128,9 @@
     
<project.build.outputTimestamp>2024-04-19T14:42:04Z</project.build.outputTimestamp>
 
     <commons.release.isDistModule>true</commons.release.isDistModule>
+    <commons.bc.version>1.8.2</commons.bc.version>
     <commons.release.version>1.8.3</commons.release.version>
     <commons.release.next>1.8.4</commons.release.next>
-    <commons.bc.version>1.8.2</commons.bc.version>
     <commons.rc.version>RC1</commons.rc.version>
     <commons.release.isDistModule>true</commons.release.isDistModule>
     <!--
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 668c0fd..9852874 100755
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -24,7 +24,7 @@
     <author email="d...@commons.apache.org">Apache Commons Developers</author>
   </properties>
   <body>
-    <release version="1.8.3" date="YYYY-MM-DD" description="Version 1.8.3">
+    <release version="1.8.3" date="2024-11-03" description="Version 1.8.3">
       <!-- UPDATES -->
       <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>
       <action type="update" dev="ggregory" due-to="Dependabot">Bump 
maven-scm.version from 2.0.1 to 2.1.0 #263.</action>
diff --git a/src/site/xdoc/download_release-plugin.xml 
b/src/site/xdoc/download_release-plugin.xml
index a1fa539..2a8bf69 100644
--- a/src/site/xdoc/download_release-plugin.xml
+++ b/src/site/xdoc/download_release-plugin.xml
@@ -113,32 +113,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons Release Plugin 1.8.2 ">
+    <section name="Apache Commons Release Plugin 1.8.3 ">
       <subsection name="Binaries">
         <table>
           <tr>
-              <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>
-              <td><a 
href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.2-bin.tar.gz.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.2-bin.tar.gz.asc";>pgp</a></td>
+              <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>
+              <td><a 
href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.tar.gz.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
-              <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>
-              <td><a 
href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.2-bin.zip.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.2-bin.zip.asc";>pgp</a></td>
+              <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>
+              <td><a 
href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.zip.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/release-plugin/binaries/commons-release-plugin-1.8.3-bin.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <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>
-              <td><a 
href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.2-src.tar.gz.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.2-src.tar.gz.asc";>pgp</a></td>
+              <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>
+              <td><a 
href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.3-src.tar.gz.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.3-src.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
-              <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>
-              <td><a 
href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.2-src.zip.sha512";>sha512</a></td>
-              <td><a 
href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.2-src.zip.asc";>pgp</a></td>
+              <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>
+              <td><a 
href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.3-src.zip.sha512";>sha512</a></td>
+              <td><a 
href="https://downloads.apache.org/commons/release-plugin/source/commons-release-plugin-1.8.3-src.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>

Reply via email to