Skip to content

Commit f5eb9e2

Browse files
committed
Prepare for the next release candidate
1 parent 36f204c commit f5eb9e2

File tree

4 files changed

+157
-9
lines changed

4 files changed

+157
-9
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
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, `COMPRESS-123-InputStream`.
64+
* A good topic branch name can be the JIRA bug ID plus a keyword, e.g. `COMPRESS-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, `[COMPRESS-123] Close input stream earlier`
68+
* For example, `[COMPRESS-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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Apache Commons Compress
4545

4646
[![Java CI](https://github.com/apache/commons-compress/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-compress/actions/workflows/maven.yml)
4747
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.commons/commons-compress?label=Maven%20Central)](https://search.maven.org/artifact/org.apache.commons/commons-compress)
48-
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-compress/1.27.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-compress/1.27.1)
48+
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-compress/1.28.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-compress/1.28.0)
4949
[![CodeQL](https://github.com/apache/commons-compress/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-compress/actions/workflows/codeql-analysis.yml)
5050
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-compress/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-compress)
5151

@@ -71,7 +71,7 @@ Alternatively, you can pull it from the central Maven repositories:
7171
<dependency>
7272
<groupId>org.apache.commons</groupId>
7373
<artifactId>commons-compress</artifactId>
74-
<version>1.27.1</version>
74+
<version>1.28.0</version>
7575
</dependency>
7676
```
7777

@@ -93,7 +93,7 @@ There are some guidelines which will make applying PRs easier for us:
9393
+ 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.
9494
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
9595
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
96-
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false`
96+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
9797

9898
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
9999
You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).

0 commit comments

Comments
 (0)