Skip to content

Commit 1a7e265

Browse files
committed
Release picocli version 4.7.1
1 parent 6b8187b commit 1a7e265

File tree

530 files changed

+1368
-1380
lines changed

Some content is hidden

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

530 files changed

+1368
-1380
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.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.7.0)
82+
* Latest: 4.7.1 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.7.1)
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.0-SNAPSHOT)](https://picocli.info/apidocs-all/)
91+
* [PREVIEW: Modular Javadoc for all artifacts (4.7.1-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.0-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.1-green.svg)](https://github.com/remkop/picocli)
274274
```
275-
[![picocli](https://img.shields.io/badge/picocli-4.7.0-green.svg)](https://github.com/remkop/picocli)
275+
[![picocli](https://img.shields.io/badge/picocli-4.7.1-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.0'
366+
implementation 'info.picocli:picocli:4.7.1'
367367
```
368368
### Maven
369369
```
370370
<dependency>
371371
<groupId>info.picocli</groupId>
372372
<artifactId>picocli</artifactId>
373-
<version>4.7.0</version>
373+
<version>4.7.1</version>
374374
</dependency>
375375
```
376376
### Scala SBT
377377
```
378-
libraryDependencies += "info.picocli" % "picocli" % "4.7.0"
378+
libraryDependencies += "info.picocli" % "picocli" % "4.7.1"
379379
```
380380
### Ivy
381381
```
382-
<dependency org="info.picocli" name="picocli" rev="4.7.0" />
382+
<dependency org="info.picocli" name="picocli" rev="4.7.1" />
383383
```
384384
### Grape
385385
```groovy
386386
@Grapes(
387-
@Grab(group='info.picocli', module='picocli', version='4.7.0')
387+
@Grab(group='info.picocli', module='picocli', version='4.7.1')
388388
)
389389
```
390390
### Leiningen
391391
```
392-
[info.picocli/picocli "4.7.0"]
392+
[info.picocli/picocli "4.7.1"]
393393
```
394394
### Buildr
395395
```
396-
'info.picocli:picocli:jar:4.7.0'
396+
'info.picocli:picocli:jar:4.7.1'
397397
```
398398

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

RELEASE-NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# picocli Release Notes
22

33

4-
# <a name="4.7.1"></a> Picocli 4.7.1 (UNRELEASED)
4+
# <a name="4.7.1"></a> Picocli 4.7.1
55
The picocli community is pleased to announce picocli 4.7.1.
66

77
This release includes bugfixes and enhancements.

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\\.0" // for task bumpReadmeVersion
99
// projectPreviousVersionRegex may be a SNAPSHOT
10-
projectPreviousVersionRegex = "4\\.7\\.0" // for task bumpVersion
11-
projectVersion = "4.7.1-SNAPSHOT" // for all build tasks
12-
releaseDate = "2022-10-31" // for task bumpVersion
10+
projectPreviousVersionRegex = "4\\.7\\.1-SNAPSHOT" // for task bumpVersion
11+
projectVersion = "4.7.1" // for all build tasks
12+
releaseDate = "2023-01-27" // for task bumpVersion
1313
releaseDatePreviousRegex = "2022\\-10\\-31" // for task bumpVersion
1414

1515
// DEPENDENCIES

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

Lines changed: 3 additions & 3 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.0</span>
1649+
<span id="revnumber">version 4.7.1</span>
16501650
</div>
16511651
</div>
16521652
<div id="content">
@@ -3084,8 +3084,8 @@ <h2 id="_conclusion">Conclusion</h2>
30843084
</div>
30853085
<div id="footer">
30863086
<div id="footer-text">
3087-
Version 4.7.0<br>
3088-
Last updated 2022-05-13 20:45:12 -0400
3087+
Version 4.7.1<br>
3088+
Last updated 2022-05-14 09:45:12 +0900
30893089
</div>
30903090
</div>
30913091
</body>

docs/announcing-picocli-1.0.html

Lines changed: 3 additions & 3 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.0,</span>
611+
<span id="revnumber">version 4.7.1,</span>
612612
<span id="revdate">2017-09-10</span>
613613
</div>
614614
</div>
@@ -732,8 +732,8 @@ <h2 id="_feedback_welcome">Feedback Welcome</h2>
732732
</div>
733733
<div id="footer">
734734
<div id="footer-text">
735-
Version 4.7.0<br>
736-
Last updated 2022-09-01 21:02:34 -0400
735+
Version 4.7.1<br>
736+
Last updated 2022-09-02 10:02:34 +0900
737737
</div>
738738
</div>
739739
</body>

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.0 API)</title>
6+
<title>All Classes (picocli 4.7.1 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.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.0 API)</title>
6+
<title>All Classes (picocli 4.7.1 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.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.0 API)";
24+
parent.document.title="All Classes (picocli 4.7.1 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.0 API)</title>
6+
<title>All Classes (picocli 4.7.1 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.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.0 API)</title>
6+
<title>All Packages (picocli 4.7.1 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.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.0 API)";
24+
parent.document.title="All Packages (picocli 4.7.1 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.0 API)</title>
6+
<title>Constant Field Values (picocli 4.7.1 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.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.0 API)";
24+
parent.document.title="Constant Field Values (picocli 4.7.1 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/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.0"</code></td>
177+
<td class="colLast"><code>"4.7.1"</code></td>
178178
</tr>
179179
</tbody>
180180
</table>

0 commit comments

Comments
 (0)