Skip to content

Commit

Permalink
Release picocli version 3.0.0-alpha-4
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Apr 3, 2018
1 parent 3d662d1 commit b9232a7
Show file tree
Hide file tree
Showing 96 changed files with 1,542 additions and 841 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ 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-3
* [Releases](https://github.com/remkop/picocli/releases) - latest: 3.0.0-alpha-4
* [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
* [Picocli 2.0 Release Notes](https://github.com/remkop/picocli/releases/tag/v2.0.0) - note there are some [potential breaking changes](https://github.com/remkop/picocli/releases/tag/v2.0.0#2.0-breaking-changes) from prior versions
Expand Down Expand Up @@ -140,35 +141,35 @@ See the [source code](https://github.com/remkop/picocli/blob/master/src/main/jav

### Gradle
```
compile 'info.picocli:picocli:3.0.0-alpha-3'
compile 'info.picocli:picocli:3.0.0-alpha-4'
```
### Maven
```
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>3.0.0-alpha-3</version>
<version>3.0.0-alpha-4</version>
</dependency>
```
### Scala SBT
```
libraryDependencies += "info.picocli" % "picocli" % "3.0.0-alpha-3"
libraryDependencies += "info.picocli" % "picocli" % "3.0.0-alpha-4"
```
### Ivy
```
<dependency org="info.picocli" name="picocli" rev="3.0.0-alpha-3" />
<dependency org="info.picocli" name="picocli" rev="3.0.0-alpha-4" />
```
### Grape
```groovy
@Grapes(
@Grab(group='info.picocli', module='picocli', version='3.0.0-alpha-3')
@Grab(group='info.picocli', module='picocli', version='3.0.0-alpha-4')
)
```
### Leiningen
```
[info.picocli/picocli "3.0.0-alpha-3"]
[info.picocli/picocli "3.0.0-alpha-4"]
```
### Buildr
```
'info.picocli:picocli:jar:3.0.0-alpha-3'
'info.picocli:picocli:jar:3.0.0-alpha-4'
```
7 changes: 4 additions & 3 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-4"></a> Picocli 3.0.0-alpha-4 (UNRELEASED)
# <a name="3.0.0-alpha-4"></a> Picocli 3.0.0-alpha-4
The picocli community is pleased to announce picocli 3.0.0-alpha-4.

This is the twenty-fourth public release.
Expand Down Expand Up @@ -40,8 +40,9 @@ See [3.0.0-alpha-1](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-
- The `UnmatchedArgsBinding` factory methods introduced in v3.0.0-alpha-1 have been replaced with `forStringArrayConsumer` and `forStringCollectionSupplier`.


See [3.0.0-alpha-2](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-2#3.0.0-alpha-2-breaking-changes).
See [3.0.0-alpha-1](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-1#3.0.0-alpha-1-breaking-changes).
See also breaking changes for [3.0.0-alpha-3](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-3#3.0.0-alpha-3-breaking-changes),
[3.0.0-alpha-2](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-2#3.0.0-alpha-2-breaking-changes),
and [3.0.0-alpha-1](https://github.com/remkop/picocli/releases/tag/v3.0.0-alpha-1#3.0.0-alpha-1-breaking-changes).



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-4-SNAPSHOT'
version '3.0.0-alpha-4'

// for bumpVersion task
def oldVersion = '3\\.0\\.0-alpha-3'
def oldVersion = '3\\.0\\.0-alpha-4-SNAPSHOT'
def oldRevdate = '2018\\-03\\-31'
def revDate = '2018-03-31'
def revDate = '2018-04-03'

// for bumpReadmeVersion task
def previousReleaseVersion = '3.0.0-alpha-3'
Expand Down
9 changes: 5 additions & 4 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 Sat Mar 31 09:42:08 JST 2018 -->
<title>All Classes (picocli 3.0.0-alpha-3 API)</title>
<meta name="date" content="2018-03-31">
<!-- Generated by javadoc (version 1.7.0_80) on Tue Apr 03 20:31:26 JST 2018 -->
<title>All Classes (picocli 3.0.0-alpha-4 API)</title>
<meta name="date" content="2018-04-03">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Expand Down Expand Up @@ -50,7 +50,8 @@ <h1 class="bar">All Classes</h1>
<li><a href="picocli/CommandLine.Model.html" title="class in picocli" target="classFrame">CommandLine.Model</a></li>
<li><a href="picocli/CommandLine.Model.ArgSpec.html" title="class in picocli" target="classFrame">CommandLine.Model.ArgSpec</a></li>
<li><a href="picocli/CommandLine.Model.CommandSpec.html" title="class in picocli" target="classFrame">CommandLine.Model.CommandSpec</a></li>
<li><a href="picocli/CommandLine.Model.IBinding.html" title="interface in picocli" target="classFrame"><i>CommandLine.Model.IBinding</i></a></li>
<li><a href="picocli/CommandLine.Model.IGetter.html" title="interface in picocli" target="classFrame"><i>CommandLine.Model.IGetter</i></a></li>
<li><a href="picocli/CommandLine.Model.ISetter.html" title="interface in picocli" target="classFrame"><i>CommandLine.Model.ISetter</i></a></li>
<li><a href="picocli/CommandLine.Model.OptionSpec.html" title="class in picocli" target="classFrame">CommandLine.Model.OptionSpec</a></li>
<li><a href="picocli/CommandLine.Model.OptionSpec.Builder.html" title="class in picocli" target="classFrame">CommandLine.Model.OptionSpec.Builder</a></li>
<li><a href="picocli/CommandLine.Model.ParserSpec.html" title="class in picocli" target="classFrame">CommandLine.Model.ParserSpec</a></li>
Expand Down
9 changes: 5 additions & 4 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 Sat Mar 31 09:42:08 JST 2018 -->
<title>All Classes (picocli 3.0.0-alpha-3 API)</title>
<meta name="date" content="2018-03-31">
<!-- Generated by javadoc (version 1.7.0_80) on Tue Apr 03 20:31:26 JST 2018 -->
<title>All Classes (picocli 3.0.0-alpha-4 API)</title>
<meta name="date" content="2018-04-03">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Expand Down Expand Up @@ -50,7 +50,8 @@ <h1 class="bar">All Classes</h1>
<li><a href="picocli/CommandLine.Model.html" title="class in picocli">CommandLine.Model</a></li>
<li><a href="picocli/CommandLine.Model.ArgSpec.html" title="class in picocli">CommandLine.Model.ArgSpec</a></li>
<li><a href="picocli/CommandLine.Model.CommandSpec.html" title="class in picocli">CommandLine.Model.CommandSpec</a></li>
<li><a href="picocli/CommandLine.Model.IBinding.html" title="interface in picocli"><i>CommandLine.Model.IBinding</i></a></li>
<li><a href="picocli/CommandLine.Model.IGetter.html" title="interface in picocli"><i>CommandLine.Model.IGetter</i></a></li>
<li><a href="picocli/CommandLine.Model.ISetter.html" title="interface in picocli"><i>CommandLine.Model.ISetter</i></a></li>
<li><a href="picocli/CommandLine.Model.OptionSpec.html" title="class in picocli">CommandLine.Model.OptionSpec</a></li>
<li><a href="picocli/CommandLine.Model.OptionSpec.Builder.html" title="class in picocli">CommandLine.Model.OptionSpec.Builder</a></li>
<li><a href="picocli/CommandLine.Model.ParserSpec.html" title="class in picocli">CommandLine.Model.ParserSpec</a></li>
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 Sat Mar 31 09:42:08 JST 2018 -->
<title>Constant Field Values (picocli 3.0.0-alpha-3 API)</title>
<meta name="date" content="2018-03-31">
<!-- Generated by javadoc (version 1.7.0_80) on Tue Apr 03 20:31:26 JST 2018 -->
<title>Constant Field Values (picocli 3.0.0-alpha-4 API)</title>
<meta name="date" content="2018-04-03">
<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-3 API)";
parent.document.title="Constant Field Values (picocli 3.0.0-alpha-4 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-3"</code></td>
<td class="colLast"><code>"3.0.0-alpha-4"</code></td>
</tr>
</tbody>
</table>
Expand Down
8 changes: 4 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 Sat Mar 31 09:42:08 JST 2018 -->
<title>Deprecated List (picocli 3.0.0-alpha-3 API)</title>
<meta name="date" content="2018-03-31">
<!-- Generated by javadoc (version 1.7.0_80) on Tue Apr 03 20:31:26 JST 2018 -->
<title>Deprecated List (picocli 3.0.0-alpha-4 API)</title>
<meta name="date" content="2018-04-03">
<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-3 API)";
parent.document.title="Deprecated List (picocli 3.0.0-alpha-4 API)";
}
//-->
</script>
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 Sat Mar 31 09:42:08 JST 2018 -->
<title>API Help (picocli 3.0.0-alpha-3 API)</title>
<meta name="date" content="2018-03-31">
<!-- Generated by javadoc (version 1.7.0_80) on Tue Apr 03 20:31:26 JST 2018 -->
<title>API Help (picocli 3.0.0-alpha-4 API)</title>
<meta name="date" content="2018-04-03">
<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-3 API)";
parent.document.title="API Help (picocli 3.0.0-alpha-4 API)";
}
//-->
</script>
Expand Down
Loading

0 comments on commit b9232a7

Please sign in to comment.