Skip to content

Commit 6336bb4

Browse files
committed
Release picocli version 4.7.5
1 parent 7c5e128 commit 6336bb4

File tree

528 files changed

+2572
-2541
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

+2572
-2541
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.4 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.7.4)
82+
* Latest: 4.7.5 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.7.5)
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.4-SNAPSHOT)](https://picocli.info/apidocs-all/)
91+
* [PREVIEW: Modular Javadoc for all artifacts (4.7.5-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)
@@ -272,9 +272,9 @@ If you like picocli, help others discover picocli:
272272
#### Spread the joy! :tada:
273273
* Tweet about picocli! What do you like about it? How has it helped you? How is it different from the alternatives?
274274
* Mention that your project uses picocli in the documentation of your project.
275-
* 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)
275+
* Show that your GitHub project uses picocli, with this badge in your README.md: [![picocli](https://img.shields.io/badge/picocli-4.7.5-green.svg)](https://github.com/remkop/picocli)
276276
```
277-
[![picocli](https://img.shields.io/badge/picocli-4.7.4-green.svg)](https://github.com/remkop/picocli)
277+
[![picocli](https://img.shields.io/badge/picocli-4.7.5-green.svg)](https://github.com/remkop/picocli)
278278
```
279279

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

366366
### Gradle
367367
```
368-
implementation 'info.picocli:picocli:4.7.4'
368+
implementation 'info.picocli:picocli:4.7.5'
369369
```
370370
### Maven
371371
```
372372
<dependency>
373373
<groupId>info.picocli</groupId>
374374
<artifactId>picocli</artifactId>
375-
<version>4.7.4</version>
375+
<version>4.7.5</version>
376376
</dependency>
377377
```
378378
### Scala SBT
379379
```
380-
libraryDependencies += "info.picocli" % "picocli" % "4.7.4"
380+
libraryDependencies += "info.picocli" % "picocli" % "4.7.5"
381381
```
382382
### Ivy
383383
```
384-
<dependency org="info.picocli" name="picocli" rev="4.7.4" />
384+
<dependency org="info.picocli" name="picocli" rev="4.7.5" />
385385
```
386386
### Grape
387387
```groovy
388388
@Grapes(
389-
@Grab(group='info.picocli', module='picocli', version='4.7.4')
389+
@Grab(group='info.picocli', module='picocli', version='4.7.5')
390390
)
391391
```
392392
### Leiningen
393393
```
394-
[info.picocli/picocli "4.7.4"]
394+
[info.picocli/picocli "4.7.5"]
395395
```
396396
### Buildr
397397
```
398-
'info.picocli:picocli:jar:4.7.4'
398+
'info.picocli:picocli:jar:4.7.5'
399399
```
400400

401401
### JBang
402402
```
403-
//DEPS info.picocli:picocli:4.7.4
403+
//DEPS info.picocli:picocli:4.7.5
404404
```
405405

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\\.4" // for task bumpReadmeVersion
99
// projectPreviousVersionRegex may be a SNAPSHOT
10-
projectPreviousVersionRegex = "4\\.7\\.4" // for task bumpVersion
11-
projectVersion = "4.7.5-SNAPSHOT" // for all build tasks
12-
releaseDate = "2023-06-03" // for task bumpVersion
10+
projectPreviousVersionRegex = "4\\.7\\.5-SNAPSHOT" // for task bumpVersion
11+
projectVersion = "4.7.5" // for all build tasks
12+
releaseDate = "2023-08-27" // for task bumpVersion
1313
releaseDatePreviousRegex = "2023\\-06\\-03" // for task bumpVersion
1414

1515
// DEPENDENCIES

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

Lines changed: 77 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,89 +1564,89 @@
15641564
});
15651565
});
15661566
</script>
1567-
<style>
1568-
.hidden {
1569-
display: none;
1570-
}
1571-
1572-
.switch {
1573-
border-width: 1px 1px 0 1px;
1574-
border-style: solid;
1575-
border-color: #7a2518;
1576-
display: inline-block;
1577-
}
1578-
1579-
.switch--item {
1580-
padding: 10px;
1581-
background-color: #ffffff;
1582-
color: #7a2518;
1583-
display: inline-block;
1584-
cursor: pointer;
1585-
}
1586-
1587-
.switch--item.selected {
1588-
background-color: #7a2519;
1589-
color: #ffffff;
1590-
}
1591-
1592-
</style>
1593-
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
1594-
<script type="text/javascript">
1595-
function addBlockSwitches() {
1596-
$('.primary').each(function() {
1597-
primary = $(this);
1598-
createSwitchItem(primary, createBlockSwitch(primary)).item.addClass("selected");
1599-
primary.children('.title').remove();
1600-
});
1601-
$('.secondary').each(function(idx, node) {
1602-
secondary = $(node);
1603-
primary = findPrimary(secondary);
1604-
switchItem = createSwitchItem(secondary, primary.children('.switch'));
1605-
switchItem.content.addClass('hidden');
1606-
findPrimary(secondary).append(switchItem.content);
1607-
secondary.remove();
1608-
});
1609-
}
1610-
1611-
function createBlockSwitch(primary) {
1612-
blockSwitch = $('<div class="switch"></div>');
1613-
primary.prepend(blockSwitch);
1614-
return blockSwitch;
1615-
}
1616-
1617-
function findPrimary(secondary) {
1618-
candidate = secondary.prev();
1619-
while (!candidate.is('.primary')) {
1620-
candidate = candidate.prev();
1621-
}
1622-
return candidate;
1623-
}
1624-
1625-
function createSwitchItem(block, blockSwitch) {
1626-
blockName = block.children('.title').text();
1627-
content = block.children('.content').first().append(block.next('.colist'));
1628-
item = $('<div class="switch--item">' + blockName + '</div>');
1629-
item.on('click', '', content, function(e) {
1630-
$(this).addClass('selected');
1631-
$(this).siblings().removeClass('selected');
1632-
e.data.siblings('.content').addClass('hidden');
1633-
e.data.removeClass('hidden');
1634-
});
1635-
blockSwitch.append(item);
1636-
return {'item': item, 'content': content};
1637-
}
1638-
1639-
$(addBlockSwitches);
1640-
1641-
</script>
1567+
<style>
1568+
.hidden {
1569+
display: none;
1570+
}
1571+
1572+
.switch {
1573+
border-width: 1px 1px 0 1px;
1574+
border-style: solid;
1575+
border-color: #7a2518;
1576+
display: inline-block;
1577+
}
1578+
1579+
.switch--item {
1580+
padding: 10px;
1581+
background-color: #ffffff;
1582+
color: #7a2518;
1583+
display: inline-block;
1584+
cursor: pointer;
1585+
}
1586+
1587+
.switch--item.selected {
1588+
background-color: #7a2519;
1589+
color: #ffffff;
1590+
}
1591+
1592+
</style>
1593+
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
1594+
<script type="text/javascript">
1595+
function addBlockSwitches() {
1596+
$('.primary').each(function() {
1597+
primary = $(this);
1598+
createSwitchItem(primary, createBlockSwitch(primary)).item.addClass("selected");
1599+
primary.children('.title').remove();
1600+
});
1601+
$('.secondary').each(function(idx, node) {
1602+
secondary = $(node);
1603+
primary = findPrimary(secondary);
1604+
switchItem = createSwitchItem(secondary, primary.children('.switch'));
1605+
switchItem.content.addClass('hidden');
1606+
findPrimary(secondary).append(switchItem.content);
1607+
secondary.remove();
1608+
});
1609+
}
1610+
1611+
function createBlockSwitch(primary) {
1612+
blockSwitch = $('<div class="switch"></div>');
1613+
primary.prepend(blockSwitch);
1614+
return blockSwitch;
1615+
}
1616+
1617+
function findPrimary(secondary) {
1618+
candidate = secondary.prev();
1619+
while (!candidate.is('.primary')) {
1620+
candidate = candidate.prev();
1621+
}
1622+
return candidate;
1623+
}
1624+
1625+
function createSwitchItem(block, blockSwitch) {
1626+
blockName = block.children('.title').text();
1627+
content = block.children('.content').first().append(block.next('.colist'));
1628+
item = $('<div class="switch--item">' + blockName + '</div>');
1629+
item.on('click', '', content, function(e) {
1630+
$(this).addClass('selected');
1631+
$(this).siblings().removeClass('selected');
1632+
e.data.siblings('.content').addClass('hidden');
1633+
e.data.removeClass('hidden');
1634+
});
1635+
blockSwitch.append(item);
1636+
return {'item': item, 'content': content};
1637+
}
1638+
1639+
$(addBlockSwitches);
1640+
1641+
</script>
16421642

16431643
</head>
16441644
<body class="article">
16451645
<div id="header">
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.4</span>
1649+
<span id="revnumber">version 4.7.5</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.4<br>
3087+
Version 4.7.5<br>
30883088
Last updated 2023-03-12 17:36:31 +0900
30893089
</div>
30903090
</div>

0 commit comments

Comments
 (0)