Skip to content

Commit 2483904

Browse files
committed
Release picocli version 4.7.4
1 parent ca8e3fc commit 2483904

File tree

528 files changed

+1633
-1298
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

528 files changed

+1633
-1298
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The user manual has examples of integrating with [Guice](https://picocli.info/#_
7979

8080
### Releases
8181
* [All Releases](https://github.com/remkop/picocli/releases)
82-
* Latest: 4.7.3 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.7.3)
82+
* Latest: 4.7.4 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.7.4)
8383
* Older: Picocli 4.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.0.0)
8484
* Older: Picocli 3.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0)
8585
* Older: Picocli 2.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v2.0.0)
@@ -88,7 +88,7 @@ The user manual has examples of integrating with [Guice](https://picocli.info/#_
8888
* [4.x User manual: https://picocli.info](https://picocli.info)
8989
* [4.x Quick Guide](https://picocli.info/quick-guide.html)
9090
* [4.x API Javadoc](https://picocli.info/apidocs/)
91-
* [PREVIEW: Modular Javadoc for all artifacts (4.7.3-SNAPSHOT)](https://picocli.info/apidocs-all/)
91+
* [PREVIEW: Modular Javadoc for all artifacts (4.7.4-SNAPSHOT)](https://picocli.info/apidocs-all/)
9292
* [Command line autocompletion](https://picocli.info/autocomplete.html)
9393
* [Programmatic API](https://picocli.info/picocli-programmatic-api.html)
9494
* [FAQ](https://github.com/remkop/picocli/wiki/FAQ)
@@ -270,9 +270,9 @@ If you like picocli, help others discover picocli:
270270
#### Spread the joy! :tada:
271271
* Tweet about picocli! What do you like about it? How has it helped you? How is it different from the alternatives?
272272
* Mention that your project uses picocli in the documentation of your project.
273-
* Show that your GitHub project uses picocli, with this badge in your README.md: [![picocli](https://img.shields.io/badge/picocli-4.7.3-green.svg)](https://github.com/remkop/picocli)
273+
* Show that your GitHub project uses picocli, with this badge in your README.md: [![picocli](https://img.shields.io/badge/picocli-4.7.4-green.svg)](https://github.com/remkop/picocli)
274274
```
275-
[![picocli](https://img.shields.io/badge/picocli-4.7.3-green.svg)](https://github.com/remkop/picocli)
275+
[![picocli](https://img.shields.io/badge/picocli-4.7.4-green.svg)](https://github.com/remkop/picocli)
276276
```
277277

278278
#### Preach it! :muscle:
@@ -363,41 +363,41 @@ See the [source code](https://github.com/remkop/picocli/blob/main/src/main/java/
363363

364364
### Gradle
365365
```
366-
implementation 'info.picocli:picocli:4.7.3'
366+
implementation 'info.picocli:picocli:4.7.4'
367367
```
368368
### Maven
369369
```
370370
<dependency>
371371
<groupId>info.picocli</groupId>
372372
<artifactId>picocli</artifactId>
373-
<version>4.7.3</version>
373+
<version>4.7.4</version>
374374
</dependency>
375375
```
376376
### Scala SBT
377377
```
378-
libraryDependencies += "info.picocli" % "picocli" % "4.7.3"
378+
libraryDependencies += "info.picocli" % "picocli" % "4.7.4"
379379
```
380380
### Ivy
381381
```
382-
<dependency org="info.picocli" name="picocli" rev="4.7.3" />
382+
<dependency org="info.picocli" name="picocli" rev="4.7.4" />
383383
```
384384
### Grape
385385
```groovy
386386
@Grapes(
387-
@Grab(group='info.picocli', module='picocli', version='4.7.3')
387+
@Grab(group='info.picocli', module='picocli', version='4.7.4')
388388
)
389389
```
390390
### Leiningen
391391
```
392-
[info.picocli/picocli "4.7.3"]
392+
[info.picocli/picocli "4.7.4"]
393393
```
394394
### Buildr
395395
```
396-
'info.picocli:picocli:jar:4.7.3'
396+
'info.picocli:picocli:jar:4.7.4'
397397
```
398398

399399
### JBang
400400
```
401-
//DEPS info.picocli:picocli:4.7.3
401+
//DEPS info.picocli:picocli:4.7.4
402402
```
403403

dependencies.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ext {
77
// projectPreviousPublishedVersion is non-SNAPSHOT, only published releases
88
projectPreviousPublishedVersion = "4\\.7\\.3" // for task bumpReadmeVersion
99
// projectPreviousVersionRegex may be a SNAPSHOT
10-
projectPreviousVersionRegex = "4\\.7\\.3" // for task bumpVersion
11-
projectVersion = "4.7.4-SNAPSHOT" // for all build tasks
12-
releaseDate = "2023-04-16" // for task bumpVersion
10+
projectPreviousVersionRegex = "4\\.7\\.4-SNAPSHOT" // for task bumpVersion
11+
projectVersion = "4.7.4" // for all build tasks
12+
releaseDate = "2023-06-03" // for task bumpVersion
1313
releaseDatePreviousRegex = "2023\\-04\\-16" // for task bumpVersion
1414

1515
// DEPENDENCIES

docs/A-Whirlwind-Tour-of-Picocli.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1646,7 +1646,7 @@
16461646
<h1>A Whirlwind Tour of Picocli</h1>
16471647
<div class="details">
16481648
<span id="author" class="author">Remko Popma</span><br>
1649-
<span id="revnumber">version 4.7.3</span>
1649+
<span id="revnumber">version 4.7.4</span>
16501650
</div>
16511651
</div>
16521652
<div id="content">
@@ -3084,7 +3084,7 @@ <h2 id="_conclusion">Conclusion</h2>
30843084
</div>
30853085
<div id="footer">
30863086
<div id="footer-text">
3087-
Version 4.7.3<br>
3087+
Version 4.7.4<br>
30883088
Last updated 2023-03-12 17:36:31 +0900
30893089
</div>
30903090
</div>

docs/announcing-picocli-1.0.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@
608608
<h1>Announcing picocli 1.0 - a mighty tiny command line interface</h1>
609609
<div class="details">
610610
<span id="author" class="author">Remko Popma</span><br>
611-
<span id="revnumber">version 4.7.3,</span>
611+
<span id="revnumber">version 4.7.4,</span>
612612
<span id="revdate">2017-09-10</span>
613613
</div>
614614
</div>
@@ -732,7 +732,7 @@ <h2 id="_feedback_welcome">Feedback Welcome</h2>
732732
</div>
733733
<div id="footer">
734734
<div id="footer-text">
735-
Version 4.7.3<br>
735+
Version 4.7.4<br>
736736
Last updated 2023-03-12 17:36:32 +0900
737737
</div>
738738
</div>

docs/apidocs-all/allclasses-frame.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>All Classes (picocli 4.7.3 API)</title>
6+
<title>All Classes (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">

docs/apidocs-all/allclasses-index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>All Classes (picocli 4.7.3 API)</title>
6+
<title>All Classes (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="All Classes (picocli 4.7.3 API)";
24+
parent.document.title="All Classes (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/allclasses-noframe.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>All Classes (picocli 4.7.3 API)</title>
6+
<title>All Classes (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">

docs/apidocs-all/allpackages-index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>All Packages (picocli 4.7.3 API)</title>
6+
<title>All Packages (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="All Packages (picocli 4.7.3 API)";
24+
parent.document.title="All Packages (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/constant-values.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>Constant Field Values (picocli 4.7.3 API)</title>
6+
<title>Constant Field Values (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="Constant Field Values (picocli 4.7.3 API)";
24+
parent.document.title="Constant Field Values (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {
@@ -174,7 +174,7 @@ <h2 title="picocli">picocli.*</h2>
174174
<!-- -->
175175
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
176176
<th class="colSecond" scope="row"><code><a href="info.picocli/picocli/CommandLine.html#VERSION">VERSION</a></code></th>
177-
<td class="colLast"><code>"4.7.3"</code></td>
177+
<td class="colLast"><code>"4.7.4"</code></td>
178178
</tr>
179179
</tbody>
180180
</table>

docs/apidocs-all/deprecated-list.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>Deprecated List (picocli 4.7.3 API)</title>
6+
<title>Deprecated List (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="Deprecated List (picocli 4.7.3 API)";
24+
parent.document.title="Deprecated List (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/help-doc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>API Help (picocli 4.7.3 API)</title>
6+
<title>API Help (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="API Help (picocli 4.7.3 API)";
24+
parent.document.title="API Help (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/index-files/index-1.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>A-Index (picocli 4.7.3 API)</title>
6+
<title>A-Index (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="A-Index (picocli 4.7.3 API)";
24+
parent.document.title="A-Index (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/index-files/index-10.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>J-Index (picocli 4.7.3 API)</title>
6+
<title>J-Index (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="J-Index (picocli 4.7.3 API)";
24+
parent.document.title="J-Index (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/index-files/index-11.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>K-Index (picocli 4.7.3 API)</title>
6+
<title>K-Index (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="K-Index (picocli 4.7.3 API)";
24+
parent.document.title="K-Index (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/index-files/index-12.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>L-Index (picocli 4.7.3 API)</title>
6+
<title>L-Index (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="L-Index (picocli 4.7.3 API)";
24+
parent.document.title="L-Index (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/index-files/index-13.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>M-Index (picocli 4.7.3 API)</title>
6+
<title>M-Index (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="M-Index (picocli 4.7.3 API)";
24+
parent.document.title="M-Index (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

docs/apidocs-all/index-files/index-14.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>N-Index (picocli 4.7.3 API)</title>
6+
<title>N-Index (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="N-Index (picocli 4.7.3 API)";
24+
parent.document.title="N-Index (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {
@@ -115,10 +115,18 @@ <h2 class="title">N</h2>
115115
<dd>
116116
<div class="block">Returns name of this command.</div>
117117
</dd>
118+
<dt><span class="memberNameLink"><a href="../info.picocli.shell.jline3/picocli/shell/jline3/PicocliCommands.html#name()">name()</a></span> - Method in class picocli.shell.jline3.<a href="../info.picocli.shell.jline3/picocli/shell/jline3/PicocliCommands.html" title="class in picocli.shell.jline3">PicocliCommands</a></dt>
119+
<dd>
120+
<div class="block">Returns the name shown for this collection of picocli commands in the usage help message.</div>
121+
</dd>
118122
<dt><span class="memberNameLink"><a href="../info.picocli/picocli/CommandLine.Model.CommandSpec.html#name(java.lang.String)">name(String)</a></span> - Method in class picocli.<a href="../info.picocli/picocli/CommandLine.Model.CommandSpec.html" title="class in picocli">CommandLine.Model.CommandSpec</a></dt>
119123
<dd>
120124
<div class="block">Sets the String to use as the program name in the synopsis line of the help message.</div>
121125
</dd>
126+
<dt><span class="memberNameLink"><a href="../info.picocli.shell.jline3/picocli/shell/jline3/PicocliCommands.html#name(java.lang.String)">name(String)</a></span> - Method in class picocli.shell.jline3.<a href="../info.picocli.shell.jline3/picocli/shell/jline3/PicocliCommands.html" title="class in picocli.shell.jline3">PicocliCommands</a></dt>
127+
<dd>
128+
<div class="block">Sets the name shown for this collection of picocli commands in the usage help message.</div>
129+
</dd>
122130
<dt><span class="memberNameLink"><a href="../info.picocli/picocli/CommandLine.Model.CommandSpec.html#names()">names()</a></span> - Method in class picocli.<a href="../info.picocli/picocli/CommandLine.Model.CommandSpec.html" title="class in picocli">CommandLine.Model.CommandSpec</a></dt>
123131
<dd>
124132
<div class="block">Returns all names of this command, including <a href="../info.picocli/picocli/CommandLine.Model.CommandSpec.html#name()"><code>CommandLine.Model.CommandSpec.name()</code></a> and <a href="../info.picocli/picocli/CommandLine.Model.CommandSpec.html#aliases()"><code>CommandLine.Model.CommandSpec.aliases()</code></a>.</div>

docs/apidocs-all/index-files/index-15.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html lang="en">
44
<head>
55
<!-- Generated by javadoc -->
6-
<title>O-Index (picocli 4.7.3 API)</title>
6+
<title>O-Index (picocli 4.7.4 API)</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.min.css" title="Style">
@@ -21,7 +21,7 @@
2121
<script type="text/javascript"><!--
2222
try {
2323
if (location.href.indexOf('is-external=true') == -1) {
24-
parent.document.title="O-Index (picocli 4.7.3 API)";
24+
parent.document.title="O-Index (picocli 4.7.4 API)";
2525
}
2626
}
2727
catch(err) {

0 commit comments

Comments
 (0)