You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -68,7 +68,7 @@ Alternatively, you can pull it from the central Maven repositories:
68
68
<dependency>
69
69
<groupId>commons-cli</groupId>
70
70
<artifactId>commons-cli</artifactId>
71
-
<version>1.10.0</version>
71
+
<version>1.11.0</version>
72
72
</dependency>
73
73
```
74
74
@@ -89,7 +89,7 @@ There are some guidelines which will make applying PRs easier for us:
89
89
+ Respect the existing code style for each file.
90
90
+ 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.
91
91
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
92
-
+ Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks.
92
+
+ Before you push a PR, run `mvn` (without arguments). This runs the default goal which contains all build checks.
93
93
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
94
94
95
95
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
Copy file name to clipboardExpand all lines: src/changes/changes.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@
22
22
<title>Apache Commons CLI Release Notes</title>
23
23
</properties>
24
24
<body>
25
-
<releaseversion="1.11.0"date="YYYY-MM-DD"description="This is a feature and maintenance release. Java 8 or later is required.">
25
+
<releaseversion="1.11.0"date="2025-10-30"description="This is a feature and maintenance release. Java 8 or later is required.">
26
26
<!-- FIX -->
27
27
<actiontype="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>
0 commit comments