Skip to content

Commit 966ddd6

Browse files
committed
Prepare for the next release candidate
1 parent 234a34d commit 966ddd6

File tree

4 files changed

+45
-3
lines changed

4 files changed

+45
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Making Changes
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.
72-
+ Write unit tests that match behavioral changes, where the tests fail if the changes to the runtime are not applied. This may not always be possible but is a best practice.
72+
+ Write unit tests that match behavioral changes, where the tests fail if the changes to the runtime are not applied. This may not always be possible but is a best-practice.
7373
Unit tests are typically in the `src/test/java` directory.
7474
+ Run a successful build using the default [Maven](https://maven.apache.org/) goal with `mvn`; that's `mvn` on the command line by itself.
7575
+ Write a pull request description that is detailed enough to understand what the pull request does, how, and why.

RELEASE-NOTES.txt

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,48 @@ Apache Commons CLI provides a simple API for presenting, processing, and validat
88
This is a feature and maintenance release. Java 8 or later is required.
99

1010

11+
New Features
12+
------------
13+
14+
* Add CommandLine.getOptionCount() to measure option repetition #396. Thanks to David Larochette, Gary Gregory.
15+
16+
Fixed Bugs
17+
----------
18+
19+
* CLI-351: Multiple trailing BREAK_CHAR_SET characters cause infinite loop in HelpFormatter. Thanks to Damien Carbonne, Claude Warren, Gary Gregory.
20+
* CLI-351: Fix issue with groups not being reported in help output. #411. Thanks to Damien Carbonne, Claude Warren, Gary Gregory.
21+
22+
Updates
23+
-------
24+
25+
* Bump org.apache.commons:commons-parent from 85 to 91 #393. Thanks to Gary Gregory, Dependabot.
26+
* Bump commons-io:commons-io from 2.20.0 to 2.21.0. Thanks to Gary Gregory.
27+
28+
29+
Historical list of changes: https://commons.apache.org/proper/commons-cli/changes.html
30+
31+
For complete information on Apache Commons CLI, including instructions on how to submit bug reports,
32+
patches, or suggestions for improvement, see the Apache Commons CLI website:
33+
34+
https://commons.apache.org/proper/commons-cli/
35+
36+
Download page: https://commons.apache.org/proper/commons-cli/download_cli.cgi
37+
38+
Have fun!
39+
The Apache Commons Team
40+
41+
------------------------------------------------------------------------------
42+
43+
Apache Commons CLI 1.11.0 Release Notes
44+
---------------------------------------
45+
46+
The Apache Commons CLI team is pleased to announce the release of Apache Commons CLI 1.11.0.
47+
48+
Apache Commons CLI provides a simple API for presenting, processing, and validating a Command Line Interface.
49+
50+
This is a feature and maintenance release. Java 8 or later is required.
51+
52+
1153
New Features
1254
------------
1355

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<title>Apache Commons CLI Release Notes</title>
2323
</properties>
2424
<body>
25-
<release version="1.11.0" date="2025-10-30" description="This is a feature and maintenance release. Java 8 or later is required.">
25+
<release version="1.11.0" date="2025-11-08" description="This is a feature and maintenance release. Java 8 or later is required.">
2626
<!-- FIX -->
2727
<action type="fix" issue="CLI-351" dev="ggregory" due-to="Damien Carbonne, Claude Warren, Gary Gregory">Multiple trailing BREAK_CHAR_SET characters cause infinite loop in HelpFormatter.</action>
2828
<action type="fix" issue="CLI-351" dev="ggregory" due-to="Damien Carbonne, Claude Warren, Gary Gregory">Fix issue with groups not being reported in help output. #411.</action>

src/changes/release-notes.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
## under the License.
1717
##
1818
${project.name} ${version} Release Notes
19-
------------------------------------------------
19+
---------------------------------------
2020

2121
The ${developmentTeam} is pleased to announce the release of ${project.name} ${version}.
2222

0 commit comments

Comments
 (0)