Skip to content

Commit f383810

Browse files
committedJan 29, 2025·
Prepare for the next release candidate
1 parent b483b4f commit f383810

File tree

4 files changed

+30
-5
lines changed

4 files changed

+30
-5
lines changed
 

‎CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ Making Changes
6161

6262
+ Create a _topic branch_ for your isolated work.
6363
* Usually you should base your branch from the `master` branch.
64-
* A good topic branch name can be the JIRA bug ID plus a keyword, for example, `COMMONSSITE-123-InputStream`.
64+
* A good topic branch name can be the JIRA bug ID plus a keyword, e.g. `COMMONSSITE-123-InputStream`.
6565
* If you have submitted multiple JIRA issues, try to maintain separate branches and pull requests.
6666
+ Make commits of logical units.
6767
* Make sure your commit messages are meaningful and in the proper format. Your commit message should contain the key of the JIRA issue.
68-
* For example, `[COMMONSSITE-123] Close input stream earlier`
68+
* For example, `[COMMONSSITE-123] Close input stream sooner`
6969
+ Respect the original code style:
7070
+ Only use spaces for indentation; you can check for unnecessary whitespace with `git diff` before committing.
7171
+ 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.

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Apache Commons Parent
4545

4646
[![Java CI](https://github.com/apache/commons-parent/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-parent/actions/workflows/maven.yml)
4747
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.commons/commons-parent?label=Maven%20Central)](https://search.maven.org/artifact/org.apache.commons/commons-parent)
48-
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-parent/80.svg)](https://javadoc.io/doc/org.apache.commons/commons-parent/80)
48+
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-parent/81.svg)](https://javadoc.io/doc/org.apache.commons/commons-parent/81)
4949
[![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)
5050
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-parent/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-parent)
5151

@@ -68,7 +68,7 @@ Alternatively, you can pull it from the central Maven repositories:
6868
<dependency>
6969
<groupId>org.apache.commons</groupId>
7070
<artifactId>commons-parent</artifactId>
71-
<version>80</version>
71+
<version>81</version>
7272
</dependency>
7373
```
7474

‎RELEASE-NOTES.txt

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
Apache Commons Parent 81 Release Notes
2+
--------------------------------------
3+
4+
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 81.
5+
6+
The Apache Commons Parent POM provides common settings for all Apache Commons components.
7+
8+
Version 81: This is a feature and maintenance release. Java 8 or later is required.
9+
10+
Fixed Bugs
11+
----------
12+
* Use com.github.spotbugs:4.8.6 on Java less than 11. Thanks to Gary Gregory.
13+
14+
15+
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes.html
16+
17+
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
18+
patches, or suggestions for improvement, see the Apache Commons Parent website:
19+
20+
https://commons.apache.org/proper/commons-parent/
21+
22+
Enjoy!
23+
Apache Commons Team
24+
25+
-----------------------------------------------------------------------------
126
Apache Commons Parent 80 Release Notes
227
--------------------------------------
328

‎src/changes/changes.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The <action> type attribute can be add,update,fix,remove.
5757
The changes report outputs actions in the order they appear in this file.
5858
-->
5959
<body>
60-
<release version="81" date="YYYY-MM-DD" description="Version 81: This is a feature and maintenance release. Java 8 or later is required.">
60+
<release version="81" date="2025-01-29" description="Version 81: This is a feature and maintenance release. Java 8 or later is required.">
6161
<!-- FIX -->
6262
<action type="fix" dev="ggregory" due-to="Gary Gregory">Use com.github.spotbugs:4.8.6 on Java less than 11.</action>
6363
<!-- ADD -->

0 commit comments

Comments
 (0)
Please sign in to comment.