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 a17beda Prepare for the next release candidate a17beda is described below commit a17beda720e0417243329a44d33b27df7abec071 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat May 11 14:21:05 2024 +0000 Prepare for the next release candidate --- README.md | 4 ++-- RELEASE-NOTES.txt | 47 +++++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 6 +++--- src/changes/changes.xml | 2 +- 4 files changed, 53 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 03aebe2..e95d57d 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ 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/69) +[](https://javadoc.io/doc/org.apache.commons/commons-parent/70) [](https://github.com/apache/commons-parent/actions/workflows/codeql-analysis.yml) [](https://api.securityscorecards.dev/projects/github.com/apache/commons-parent) @@ -69,7 +69,7 @@ Alternatively, you can pull it from the central Maven repositories: <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> - <version>69</version> + <version>70</version> </dependency> ``` diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 13c336b..0915f05 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,3 +1,50 @@ +Apache Commons Parent 70 +RELEASE NOTES + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 70. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Version 70: Maintenance and update dependencies + +New features +------------ +* Add profile benchmark for JMH benchmarks. Thanks to Gary Gregory. +* Add JMH to dependency management section. Thanks to Gary Gregory. + +Fixed Bugs +---------- +* Set Javadoc link to latest Java API LTS version. Thanks to Gary Gregory. +* Set Jacoco defaults to 1.00. Thanks to Gary Gregory. + +Changes +------- +* Bump com.puppycrawl.tools:checkstyle from 10.14.2 to 10.16.0 on Java 11 and up. Thanks to Gary Gregory. +* Bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12 #392. Thanks to Dependabot. +* Bump org.apache.maven.plugins:maven-artifact-plugin from 3.5.0 to 3.5.1 #393. Thanks to Dependabot. +* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.3.1 to 4.8.5.0 #394, #411. Thanks to Dependabot. +* Bump com.github.spotbugs:spotbugs from 4.8.3 to 4.8.5. Thanks to Dependabot. +* Bump org.apache:apache (parent POM) from 31 to 32. Thanks to Dependabot. +* Bump org.apache.commons:commons-build-plugin from 1.13 to 1.14.0 #397. Thanks to Dependabot. +* Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.1 #398. Thanks to Dependabot, Gary Gregory. +* Bump org.apache.commons:commons-release-plugin from 1.8.1 to 1.8.2 #401. Thanks to Dependabot, Gary Gregory. +* Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.20.0 to 0.21.2 #403, #410. Thanks to Gary Gregory. +* Bump org.apache.maven.plugins:maven-pmd-plugin from 3.21.2 to 3.22.0 #404. Thanks to Gary Gregory. +* Bump commons.pmd-impl.version from 6.55.0 to 7.1.0 #388, #408. Thanks to Gary Gregory. +* Bump org.apache.bcel:bcel from 6.8.2 to 6.9.0. Thanks to Gary Gregory. +* Bump org.junit.jupiter:junit-* from 5.10.2 to 5.11.0-M1. Thanks to Gary Gregory. +* Bump org.junit.platform:junit-platform-* from 5.10.2 to 5.11.0-M1. Thanks to Gary Gregory. +* Bump org.junit.vintage:junit-vintage-engine from 5.10.2 to 5.11.0-M1. Thanks to Gary Gregory. + + +Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.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/ + +----------------------------------------------------------------------------- Apache Commons Parent 69 RELEASE NOTES diff --git a/pom.xml b/pom.xml index e0f06b6..f4f9865 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-04-01T17:21:51Z</project.build.outputTimestamp> - <commons.release.version>69</commons.release.version> - <commons.release.next>70</commons.release.next> + <commons.release.version>70</commons.release.version> + <commons.release.next>71</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>68</commons.bc.version> + <commons.bc.version>69</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 e8d0840..39680df 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="70" date="YYYY-MM-DD" description="Version 70: Maintenance and update dependencies"> + <release version="70" date="2024-05-11" description="Version 70: Maintenance and update dependencies"> <!-- ADD --> <action type="add" dev="ggregory" due-to="Gary Gregory">Add profile benchmark for JMH benchmarks.</action> <action type="add" dev="ggregory" due-to="Gary Gregory">Add JMH to dependency management section.</action>