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 baf4783 Prepare for the next release candidate baf4783 is described below commit baf47833e7e562c85f1a603d9002372bfa0242bf Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jun 7 12:49:15 2024 +0000 Prepare for the next release candidate --- README.md | 9 ++++++--- RELEASE-NOTES.txt | 2 +- pom.xml | 6 +++--- src/changes/changes.xml | 2 +- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b1d1d40..f1e2799 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,8 @@ Apache Commons Parent [](https://github.com/apache/commons-parent/actions/workflows/maven.yml) [](https://app.codecov.io/gh/apache/commons-parent) [](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/?gav=true) -[](https://javadoc.io/doc/org.apache.commons/commons-parent/70) +[](https://javadoc.io/doc/org.apache.commons/commons-parent/71) +[](https://github.com/apache/commons-parent/actions/workflows/codeql-analysis.yml) [](https://api.securityscorecards.dev/projects/github.com/apache/commons-parent) The Apache Commons Parent POM provides common settings for all Apache Commons components. @@ -68,7 +69,7 @@ Alternatively, you can pull it from the central Maven repositories: <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> - <version>70</version> + <version>71</version> </dependency> ``` @@ -88,7 +89,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 0915f05..42c74a9 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -5,7 +5,7 @@ The Apache Commons Parent team is pleased to announce the release of Apache Comm The Apache Commons Parent POM provides common settings for all Apache Commons components. -Version 70: Maintenance and update dependencies +Version 70: Maintenance and update dependencies. New features ------------ diff --git a/pom.xml b/pom.xml index f15288e..f456612 100644 --- a/pom.xml +++ b/pom.xml @@ -80,13 +80,13 @@ <!-- configuration bits for cutting a release candidate, must be overridden by components --> <!-- TODO How can we make project.build.outputTimestamp and changes.xml's release data the same? --> <project.build.outputTimestamp>2024-05-15T13:09:46Z</project.build.outputTimestamp> - <commons.release.version>70</commons.release.version> - <commons.release.next>71</commons.release.next> + <commons.release.version>71</commons.release.version> + <commons.release.next>72</commons.release.next> <commons.rc.version>RC1</commons.rc.version> <commons.jira.id>COMMONSSITE</commons.jira.id> <!-- Commons Release Plugin --> <!-- Previous version of the component (used for reporting binary compatibility check)--> - <commons.bc.version>69</commons.bc.version> + <commons.bc.version>70</commons.bc.version> <commons.release.isDistModule>true</commons.release.isDistModule> <!-- Define the following in ~/.m2/settings.xml in an active profile: diff --git a/src/changes/changes.xml b/src/changes/changes.xml index a37348d..37aeffc 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="71" date="YYYY-MM-DD" description="Version 71: Maintenance and update dependencies."> + <release version="71" date="2024-06-07" description="Version 71: Maintenance and update dependencies."> <!-- FIX --> <action type="fix" dev="ebourg">Generate the Javadoc with frames when building with JDK 11</action> <action type="fix" dev="ebourg">Build the Javadoc only once during the release</action>