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-parent.git
The following commit(s) were added to refs/heads/master by this push:
new d8a5fb4 Prepare for the next release candidate
d8a5fb4 is described below
commit d8a5fb4f20f21e5cf26020a5d46c32b2b5d23adc
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Nov 19 12:01:06 2025 +0000
Prepare for the next release candidate
---
CONTRIBUTING.md | 2 +-
README.md | 4 ++--
RELEASE-NOTES.txt | 37 +++++++++++++++++++++++++++++++++++++
src/changes/changes.xml | 2 +-
4 files changed, 41 insertions(+), 4 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 452b10c..5602514 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -69,7 +69,7 @@ Making Changes
+ Respect the original code style:
+ Only use spaces for indentation; you can check for unnecessary whitespace
with `git diff` before committing.
+ 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.
-+ Write unit tests that match behavioral changes, where the tests fail if the
changes to the runtime are not applied. This may not always be possible but is
a best-practice.
++ Write unit tests that match behavioral changes, where the tests fail if the
changes to the runtime are not applied. This may not always be possible but is
a best practice.
Unit tests are typically in the `src/test/java` directory.
+ Run a successful build using the default [Maven](https://maven.apache.org/)
goal with `mvn`; that's `mvn` on the command line by itself.
+ Write a pull request description that is detailed enough to understand what
the pull request does, how, and why.
diff --git a/README.md b/README.md
index 6194d19..3dfa0f5 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Apache Commons Parent
[](https://github.com/apache/commons-parent/actions/workflows/maven.yml)
[](https://search.maven.org/artifact/org.apache.commons/commons-parent)
-[](https://javadoc.io/doc/org.apache.commons/commons-parent/92)
+[](https://javadoc.io/doc/org.apache.commons/commons-parent/93)
[](https://github.com/apache/commons-parent/actions/workflows/codeql-analysis.yml)
[](https://api.securityscorecards.dev/projects/github.com/apache/commons-parent)
@@ -68,7 +68,7 @@ Alternatively, you can pull it from the central Maven
repositories:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
- <version>92</version>
+ <version>93</version>
</dependency>
```
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 52ef933..74e650d 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,3 +1,40 @@
+Apache Commons Parent 93 Release Notes
+--------------------------------------
+
+The Apache Commons Parent team is pleased to announce the release of Apache
Commons Parent 93.
+
+The Apache Commons Parent POM provides common settings for all Apache Commons
components.
+
+This is a feature and maintenance release. Java 8 or later is required.
+
+Fixed Bugs
+----------
+* POM issueManagement/url now reuses the property
`commons.jira.id`. Thanks to Gary Gregory.
+* Fix maven-changes-plugin template for Jira issues link.
Thanks to Gary Gregory.
+* POM /issueManagement/url now reuses the
`commons.repo.name`. Thanks to Gary Gregory.
+* Fix the configuration for the Apache Maven RAT plugin to
not use deprecated XML elements. Thanks to Gary Gregory.
+
+Changes
+-------
+* Bump com.puppycrawl.tools:checkstyle from 12.1.1 to 12.1.2
on Java 17 and up. Thanks to Gary Gregory.
+* Bump JUnit from 5.13.4 to 5.14.1. Thanks to Gary Gregory.
+* Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.2
to 3.5.0 #686. Thanks to Gary Gregory, Dependabot.
+
+Removed
+-------
+* Remove buildnumber-maven-plugin #683. Thanks to Gary
Gregory.
+
+Historical list of changes:
https://commons.apache.org/proper/commons-parent/changes.html
+
+For complete information on Apache Commons Parent, including instructions on
how to submit bug reports,
+patches, or suggestions for improvement, see the Apache Commons Parent website:
+
+https://commons.apache.org/proper/commons-parent/
+
+Enjoy!
+Apache Commons Team
+
+-----------------------------------------------------------------------------
Apache Commons Parent 92 Release Notes
--------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index bd23cc1..a1d7eaa 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -57,7 +57,7 @@ The <action> type attribute can be add,update,fix,remove.
The changes report outputs actions in the order they appear in this file.
-->
<body>
- <release version="93" date="YYYY-MM-DD" description="This is a feature
and maintenance release. Java 8 or later is required.">
+ <release version="93" date="2025-11-19" description="This is a feature
and maintenance release. Java 8 or later is required.">
<!-- FIX -->
<action type="fix" dev="ggregory" due-to="Gary Gregory">POM
issueManagement/url now reuses the property `commons.jira.id`.</action>
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix
maven-changes-plugin template for Jira issues link.</action>