Skip to content

Commit

Permalink
Prepare for the next release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed May 11, 2024
1 parent 3cced6b commit a17beda
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -46,7 +46,7 @@ Apache Commons Parent
[![Java CI](https://github.com/apache/commons-parent/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-parent/actions/workflows/maven.yml)
[![Coverage Status](https://codecov.io/gh/apache/commons-parent/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-parent)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/badge.svg?gav=true)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-parent/?gav=true)
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-parent/69.svg)](https://javadoc.io/doc/org.apache.commons/commons-parent/69)
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-parent/70.svg)](https://javadoc.io/doc/org.apache.commons/commons-parent/70)
[![CodeQL](https://github.com/apache/commons-parent/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-parent/actions/workflows/codeql-analysis.yml)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-parent/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-parent)

Expand All @@ -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>
```

Expand Down
47 changes: 47 additions & 0 deletions 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

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/changes/changes.xml
Expand Up @@ -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>
Expand Down

0 comments on commit a17beda

Please sign in to comment.