Skip to content

Commit

Permalink
Release picocli version 3.0.0-alpha-6
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Apr 12, 2018
1 parent 0607c98 commit 9ef2df1
Show file tree
Hide file tree
Showing 97 changed files with 734 additions and 515 deletions.
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ interactively showing users what options and subcommands are available.
![Picocli Demo help message with ANSI colors](docs/images/picocli.Demo.png?raw=true)

#### Releases
* [Releases](https://github.com/remkop/picocli/releases) - latest: 3.0.0-alpha-5
* [Picocli 3.0.0-alpha-5 Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-5) - note there are some [potential breaking changes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-5#3.0.0-alpha-5-breaking-changes) from prior versions
* [Releases](https://github.com/remkop/picocli/releases) - latest: 3.0.0-alpha-6
* [Picocli 3.0.0-alpha-6 Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-6) - note there are some [potential breaking changes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-6#3.0.0-alpha-6-breaking-changes) from prior versions
* [Picocli 3.0.0-alpha-4 Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-4) - note there are some [potential breaking changes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-4#3.0.0-alpha-4-breaking-changes) from prior versions
* [Picocli 3.0.0-alpha-3 Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-3) - note there are some [potential breaking changes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-3#3.0.0-alpha-3-breaking-changes) from prior versions
* [Picocli 3.0.0-alpha-2 Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-2) - note there are some [potential breaking changes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-2#3.0.0-alpha-2-breaking-changes) from prior versions
* [Picocli 3.0.0-alpha-1 Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-1) - note there are some [potential breaking changes](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-1#3.0.0-alpha-1-breaking-changes) from prior versions
Expand Down Expand Up @@ -142,35 +143,35 @@ See the [source code](https://github.com/remkop/picocli/blob/master/src/main/jav

### Gradle
```
compile 'info.picocli:picocli:3.0.0-alpha-5'
compile 'info.picocli:picocli:3.0.0-alpha-6'
```
### Maven
```
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>3.0.0-alpha-5</version>
<version>3.0.0-alpha-6</version>
</dependency>
```
### Scala SBT
```
libraryDependencies += "info.picocli" % "picocli" % "3.0.0-alpha-5"
libraryDependencies += "info.picocli" % "picocli" % "3.0.0-alpha-6"
```
### Ivy
```
<dependency org="info.picocli" name="picocli" rev="3.0.0-alpha-5" />
<dependency org="info.picocli" name="picocli" rev="3.0.0-alpha-6" />
```
### Grape
```groovy
@Grapes(
@Grab(group='info.picocli', module='picocli', version='3.0.0-alpha-5')
@Grab(group='info.picocli', module='picocli', version='3.0.0-alpha-6')
)
```
### Leiningen
```
[info.picocli/picocli "3.0.0-alpha-5"]
[info.picocli/picocli "3.0.0-alpha-6"]
```
### Buildr
```
'info.picocli:picocli:jar:3.0.0-alpha-5'
'info.picocli:picocli:jar:3.0.0-alpha-6'
```
4 changes: 2 additions & 2 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# picocli Release Notes

# <a name="3.0.0-alpha-6"></a> Picocli 3.0.0-alpha-6 (UNRELEASED)
# <a name="3.0.0-alpha-6"></a> Picocli 3.0.0-alpha-6
The picocli community is pleased to announce picocli 3.0.0-alpha-6.

This release contains enhancements and bug fixes.
Expand All @@ -15,7 +15,7 @@ Picocli follows [semantic versioning](http://semver.org/).
* [Deprecations](#3.0.0-alpha-6-deprecated)
* [Potential breaking changes](#3.0.0-alpha-6-breaking-changes)

## <a name="3.0.0-alpha-5-new"></a> New and Noteworthy
## <a name="3.0.0-alpha-6-new"></a> New and Noteworthy


## <a name="3.0.0-alpha-6-promoted"></a> Promoted Features
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
group 'info.picocli'
description 'Annotation-based Java command line parser. Usage help with ANSI styles and colors. Autocomplete. Nested subcommands. Easily included as source to avoid adding a dependency.'
version '3.0.0-alpha-6-SNAPSHOT'
version '3.0.0-alpha-6'

// for bumpVersion task
def oldVersion = '3\\.0\\.0-alpha-5'
def oldVersion = '3\\.0\\.0-alpha-6-SNAPSHOT'
def oldRevdate = '2018\\-04\\-11'
def revDate = '2018-04-11'
def revDate = '2018-04-12'

// for bumpReadmeVersion task
def previousReleaseVersion = '3.0.0-alpha-5'
Expand Down
6 changes: 3 additions & 3 deletions docs/apidocs/allclasses-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>All Classes (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>All Classes (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Expand Down
6 changes: 3 additions & 3 deletions docs/apidocs/allclasses-noframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>All Classes (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>All Classes (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Expand Down
10 changes: 5 additions & 5 deletions docs/apidocs/constant-values.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>Constant Field Values (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>Constant Field Values (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Constant Field Values (picocli 3.0.0-alpha-5 API)";
parent.document.title="Constant Field Values (picocli 3.0.0-alpha-6 API)";
}
//-->
</script>
Expand Down Expand Up @@ -87,7 +87,7 @@ <h2 title="picocli">picocli.*</h2>
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
<td><code><a href="picocli/CommandLine.html#VERSION">VERSION</a></code></td>
<td class="colLast"><code>"3.0.0-alpha-5"</code></td>
<td class="colLast"><code>"3.0.0-alpha-6"</code></td>
</tr>
</tbody>
</table>
Expand Down
18 changes: 14 additions & 4 deletions docs/apidocs/deprecated-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>Deprecated List (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>Deprecated List (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Deprecated List (picocli 3.0.0-alpha-5 API)";
parent.document.title="Deprecated List (picocli 3.0.0-alpha-6 API)";
}
//-->
</script>
Expand Down Expand Up @@ -111,6 +111,16 @@ <h2 title="Contents">Contents</h2>
<td class="colOne"><a href="picocli/CommandLine.Help.html#addSubcommand(java.lang.String,%20java.lang.Object)">picocli.CommandLine.Help.addSubcommand(String, Object)</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="picocli/CommandLine.Help.Ansi.Text.html#append(picocli.CommandLine.Help.Ansi.Text)">picocli.CommandLine.Help.Ansi.Text.append(CommandLine.Help.Ansi.Text)</a>
<div class="block"><i>use <code>#concat(Text)</code> instead</i></div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="picocli/CommandLine.Help.Ansi.Text.html#append(java.lang.String)">picocli.CommandLine.Help.Ansi.Text.append(String)</a>
<div class="block"><i>use <a href="picocli/CommandLine.Help.Ansi.Text.html#concat(java.lang.String)"><code>CommandLine.Help.Ansi.Text.concat(String)</code></a> instead</i></div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="picocli/CommandLine.Help.TextTable.html#cellAt(int,%20int)">picocli.CommandLine.Help.TextTable.cellAt(int, int)</a>
<div class="block"><i>use <a href="picocli/CommandLine.Help.TextTable.html#textAt(int,%20int)"><code>CommandLine.Help.TextTable.textAt(int, int)</code></a> instead</i></div>
</td>
Expand Down
8 changes: 4 additions & 4 deletions docs/apidocs/help-doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>API Help (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>API Help (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="API Help (picocli 3.0.0-alpha-5 API)";
parent.document.title="API Help (picocli 3.0.0-alpha-6 API)";
}
//-->
</script>
Expand Down
38 changes: 31 additions & 7 deletions docs/apidocs/index-all.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>Index (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>Index (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (picocli 3.0.0-alpha-5 API)";
parent.document.title="Index (picocli 3.0.0-alpha-6 API)";
}
//-->
</script>
Expand Down Expand Up @@ -193,11 +193,15 @@ <h2 class="title">A</h2>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Help.Ansi.Text.html#append(java.lang.String)">append(String)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Help.Ansi.Text.html" title="class in picocli">CommandLine.Help.Ansi.Text</a></dt>
<dd>
<div class="block">Returns a new <code>Text</code> instance with the specified text appended.</div>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <a href="./picocli/CommandLine.Help.Ansi.Text.html#concat(java.lang.String)"><code>CommandLine.Help.Ansi.Text.concat(String)</code></a> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Help.Ansi.Text.html#append(picocli.CommandLine.Help.Ansi.Text)">append(CommandLine.Help.Ansi.Text)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Help.Ansi.Text.html" title="class in picocli">CommandLine.Help.Ansi.Text</a></dt>
<dd>
<div class="block">Returns a new <code>Text</code> instance with the specified text appended.</div>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>use <code>#concat(Text)</code> instead</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Help.Ansi.html#apply(java.lang.String,%20java.util.List)">apply(String, List&lt;CommandLine.Help.Ansi.IStyle&gt;)</a></span> - Method in enum picocli.<a href="./picocli/CommandLine.Help.Ansi.html" title="enum in picocli">CommandLine.Help.Ansi</a></dt>
<dd>
Expand Down Expand Up @@ -797,6 +801,14 @@ <h2 class="title">C</h2>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Range.html#compareTo(picocli.CommandLine.Range)">compareTo(CommandLine.Range)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Range.html" title="class in picocli">CommandLine.Range</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Help.Ansi.Text.html#concat(java.lang.String)">concat(String)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Help.Ansi.Text.html" title="class in picocli">CommandLine.Help.Ansi.Text</a></dt>
<dd>
<div class="block">Returns a copy of this <code>Text</code> instance with the specified text concatenated to the end.</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Help.Ansi.Text.html#concat(picocli.CommandLine.Help.Ansi.Text)">concat(CommandLine.Help.Ansi.Text)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Help.Ansi.Text.html" title="class in picocli">CommandLine.Help.Ansi.Text</a></dt>
<dd>
<div class="block">Returns a copy of this <code>Text</code> instance with the specified text concatenated to the end.</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Range.html#contains(int)">contains(int)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Range.html" title="class in picocli">CommandLine.Range</a></dt>
<dd>
<div class="block">Returns <code>true</code> if this Range includes the specified value, <code>false</code> otherwise.</div>
Expand Down Expand Up @@ -1493,6 +1505,10 @@ <h2 class="title">L</h2>
<dd>
<div class="block">Copies the specified text values into the correct cells in the <a href="./picocli/CommandLine.Help.TextTable.html" title="class in picocli"><code>CommandLine.Help.TextTable</code></a>.</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Model.OptionSpec.html#longestName()">longestName()</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Model.OptionSpec.html" title="class in picocli">CommandLine.Model.OptionSpec</a></dt>
<dd>
<div class="block">Returns the longest <a href="./picocli/CommandLine.Model.OptionSpec.html#names()">option name</a>.</div>
</dd>
</dl>
<a name="_M_">
<!-- -->
Expand Down Expand Up @@ -1785,6 +1801,10 @@ <h2 class="title">P</h2>
<dd>
<div class="block">Returns the parser specification for this command.</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Model.CommandSpec.html#parser(picocli.CommandLine.Model.ParserSpec)">parser(CommandLine.Model.ParserSpec)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Model.CommandSpec.html" title="class in picocli">CommandLine.Model.CommandSpec</a></dt>
<dd>
<div class="block">Initializes the parser specification for this command from the specified settings and returns this commandSpec.</div>
</dd>
<dt><span class="strong"><a href="./picocli/groovy/PicocliBaseScript.html#parseScriptArguments(picocli.CommandLine,%20java.lang.String[])">parseScriptArguments(CommandLine, String[])</a></span> - Method in class picocli.groovy.<a href="./picocli/groovy/PicocliBaseScript.html" title="class in picocli.groovy">PicocliBaseScript</a></dt>
<dd>
<div class="block">Returns the result of calling <a href="./picocli/CommandLine.html#parse(java.lang.String...)"><code>CommandLine.parse(String...)</code></a> with the given arguments.</div>
Expand Down Expand Up @@ -2336,6 +2356,10 @@ <h2 class="title">U</h2>
<dd>
<div class="block">Returns the usage help message specification for this command.</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Model.CommandSpec.html#usageMessage(picocli.CommandLine.Model.UsageMessageSpec)">usageMessage(CommandLine.Model.UsageMessageSpec)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Model.CommandSpec.html" title="class in picocli">CommandLine.Model.CommandSpec</a></dt>
<dd>
<div class="block">Initializes the usageMessage specification for this command from the specified settings and returns this commandSpec.</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.AbstractHandler.html#useAnsi(picocli.CommandLine.Help.Ansi)">useAnsi(CommandLine.Help.Ansi)</a></span> - Method in class picocli.<a href="./picocli/CommandLine.AbstractHandler.html" title="class in picocli">CommandLine.AbstractHandler</a></dt>
<dd>
<div class="block">Sets the ANSI style to use.</div>
Expand Down Expand Up @@ -2410,7 +2434,7 @@ <h2 class="title">V</h2>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.html#VERSION">VERSION</a></span> - Static variable in class picocli.<a href="./picocli/CommandLine.html" title="class in picocli">CommandLine</a></dt>
<dd>
<div class="block">This is picocli version "3.0.0-alpha-5".</div>
<div class="block">This is picocli version "3.0.0-alpha-6".</div>
</dd>
<dt><span class="strong"><a href="./picocli/CommandLine.Model.OptionSpec.Builder.html#versionHelp()">versionHelp()</a></span> - Method in class picocli.<a href="./picocli/CommandLine.Model.OptionSpec.Builder.html" title="class in picocli">CommandLine.Model.OptionSpec.Builder</a></dt>
<dd>
Expand Down
4 changes: 2 additions & 2 deletions docs/apidocs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc on Wed Apr 11 03:13:05 JST 2018 -->
<title>picocli 3.0.0-alpha-5 API</title>
<!-- Generated by javadoc on Thu Apr 12 23:12:45 JST 2018 -->
<title>picocli 3.0.0-alpha-6 API</title>
<script type="text/javascript">
targetPage = "" + window.location.search;
if (targetPage != "" && targetPage != "undefined")
Expand Down
6 changes: 3 additions & 3 deletions docs/apidocs/overview-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>Overview List (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>Overview List (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Expand Down
10 changes: 5 additions & 5 deletions docs/apidocs/overview-summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>Overview (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>Overview (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Overview (picocli 3.0.0-alpha-5 API)";
parent.document.title="Overview (picocli 3.0.0-alpha-6 API)";
}
//-->
</script>
Expand Down Expand Up @@ -62,7 +62,7 @@
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">picocli 3.0.0-alpha-5 API</h1>
<h1 class="title">picocli 3.0.0-alpha-6 API</h1>
</div>
<div class="header">
<div class="subTitle">
Expand Down
8 changes: 4 additions & 4 deletions docs/apidocs/overview-tree.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:05 JST 2018 -->
<title>Class Hierarchy (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:45 JST 2018 -->
<title>Class Hierarchy (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Class Hierarchy (picocli 3.0.0-alpha-5 API)";
parent.document.title="Class Hierarchy (picocli 3.0.0-alpha-6 API)";
}
//-->
</script>
Expand Down
8 changes: 4 additions & 4 deletions docs/apidocs/picocli/AutoComplete.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Wed Apr 11 03:13:03 JST 2018 -->
<title>AutoComplete (picocli 3.0.0-alpha-5 API)</title>
<meta name="date" content="2018-04-11">
<!-- Generated by javadoc (version 1.7.0_80) on Thu Apr 12 23:12:43 JST 2018 -->
<title>AutoComplete (picocli 3.0.0-alpha-6 API)</title>
<meta name="date" content="2018-04-12">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="AutoComplete (picocli 3.0.0-alpha-5 API)";
parent.document.title="AutoComplete (picocli 3.0.0-alpha-6 API)";
}
//-->
</script>
Expand Down
Loading

0 comments on commit 9ef2df1

Please sign in to comment.