From 0c4ed75fe30d843f3e8fb78409c84fe7c362a1ea Mon Sep 17 00:00:00 2001 From: Remko Popma Date: Wed, 3 Jan 2018 01:37:56 +0900 Subject: [PATCH] Release picocli version 2.2.1 --- README.md | 2 +- build.gradle | 11 ++-- docs/apidocs/allclasses-frame.html | 6 +- docs/apidocs/allclasses-noframe.html | 6 +- docs/apidocs/constant-values.html | 10 +-- docs/apidocs/deprecated-list.html | 8 +-- docs/apidocs/help-doc.html | 8 +-- docs/apidocs/index-all.html | 10 +-- docs/apidocs/index.html | 4 +- docs/apidocs/overview-frame.html | 6 +- docs/apidocs/overview-summary.html | 10 +-- docs/apidocs/overview-tree.html | 8 +-- docs/apidocs/picocli/AutoComplete.html | 8 +-- docs/apidocs/picocli/CommandLine.Command.html | 8 +-- .../CommandLine.DefaultExceptionHandler.html | 8 +-- ...e.DuplicateOptionAnnotationsException.html | 8 +-- .../CommandLine.ExecutionException.html | 8 +-- .../picocli/CommandLine.Help.Ansi.IStyle.html | 8 +-- .../picocli/CommandLine.Help.Ansi.Style.html | 8 +-- .../picocli/CommandLine.Help.Ansi.Text.html | 8 +-- .../picocli/CommandLine.Help.Ansi.html | 8 +-- .../picocli/CommandLine.Help.ColorScheme.html | 8 +-- .../CommandLine.Help.Column.Overflow.html | 8 +-- .../picocli/CommandLine.Help.Column.html | 8 +-- .../CommandLine.Help.IOptionRenderer.html | 8 +-- .../CommandLine.Help.IParamLabelRenderer.html | 8 +-- .../CommandLine.Help.IParameterRenderer.html | 8 +-- .../picocli/CommandLine.Help.Layout.html | 8 +-- .../CommandLine.Help.TextTable.Cell.html | 8 +-- .../picocli/CommandLine.Help.TextTable.html | 8 +-- docs/apidocs/picocli/CommandLine.Help.html | 8 +-- .../CommandLine.IExceptionHandler.html | 8 +-- .../apidocs/picocli/CommandLine.IFactory.html | 8 +-- .../CommandLine.IParseResultHandler.html | 8 +-- .../picocli/CommandLine.ITypeConverter.html | 8 +-- .../picocli/CommandLine.IVersionProvider.html | 8 +-- .../CommandLine.InitializationException.html | 8 +-- ...ne.MaxValuesforFieldExceededException.html | 8 +-- ...CommandLine.MissingParameterException.html | 8 +-- ...andLine.MissingTypeConverterException.html | 8 +-- docs/apidocs/picocli/CommandLine.Option.html | 8 +-- ...ommandLine.OverwrittenOptionException.html | 8 +-- .../CommandLine.ParameterException.html | 8 +-- ...ommandLine.ParameterIndexGapException.html | 8 +-- .../picocli/CommandLine.Parameters.html | 8 +-- .../picocli/CommandLine.ParentCommand.html | 8 +-- .../picocli/CommandLine.PicocliException.html | 8 +-- docs/apidocs/picocli/CommandLine.Range.html | 8 +-- docs/apidocs/picocli/CommandLine.RunAll.html | 8 +-- .../apidocs/picocli/CommandLine.RunFirst.html | 8 +-- docs/apidocs/picocli/CommandLine.RunLast.html | 8 +-- .../CommandLine.TypeConversionException.html | 8 +-- ...ommandLine.UnmatchedArgumentException.html | 8 +-- docs/apidocs/picocli/CommandLine.html | 12 ++-- .../picocli/groovy/PicocliBaseScript.html | 8 +-- .../apidocs/picocli/groovy/PicocliScript.html | 8 +-- .../PicocliScriptASTTransformation.html | 8 +-- .../apidocs/picocli/groovy/package-frame.html | 6 +- .../picocli/groovy/package-summary.html | 8 +-- docs/apidocs/picocli/groovy/package-tree.html | 8 +-- docs/apidocs/picocli/package-frame.html | 6 +- docs/apidocs/picocli/package-summary.html | 8 +-- docs/apidocs/picocli/package-tree.html | 14 ++-- docs/apidocs/serialized-form.html | 8 +-- docs/autocomplete.adoc | 4 +- docs/autocomplete.html | 8 +-- docs/index.adoc | 16 ++--- docs/index.html | 65 ++++++++++++++----- src/main/java/picocli/CommandLine.java | 2 +- src/test/java/picocli/AutoCompleteTest.java | 2 +- src/test/java/picocli/CommandLineTest.java | 2 +- 71 files changed, 321 insertions(+), 289 deletions(-) diff --git a/README.md b/README.md index 4bb34887a..283ca13c2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ 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: 2.2 +* [Releases](https://github.com/remkop/picocli/releases) - latest: 2.2.1 * [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 #### Documentation diff --git a/build.gradle b/build.gradle index 2dbbb50ec..e6f2457be 100644 --- a/build.gradle +++ b/build.gradle @@ -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 '2.2.1-SNAPSHOT' +version '2.2.1' // for bumpVersion task -def oldVersion = '2\\.2\\.0' +def oldVersion = '2\\.2\\.1-SNAPSHOT' def oldRevdate = '2017\\-12\\-21' -def revDate = '2017-12-21' +def revDate = '2018-01-03' buildscript { repositories { @@ -82,7 +82,10 @@ apply plugin: 'maven-publish' jar { manifest { - attributes 'Implementation-Title' : 'picocli', + attributes 'Specification-Title' : 'picocli', + 'Specification-Vendor' : 'Remko Popma', + 'Specification-Version' : version, + 'Implementation-Title' : 'picocli', 'Implementation-Vendor' : 'Remko Popma', 'Implementation-Version': version, 'Main-Class' : 'picocli.AutoComplete', diff --git a/docs/apidocs/allclasses-frame.html b/docs/apidocs/allclasses-frame.html index e9721e236..d057bd509 100644 --- a/docs/apidocs/allclasses-frame.html +++ b/docs/apidocs/allclasses-frame.html @@ -2,9 +2,9 @@ - -All Classes (picocli 2.2.0 API) - + +All Classes (picocli 2.2.1 API) + diff --git a/docs/apidocs/allclasses-noframe.html b/docs/apidocs/allclasses-noframe.html index 0b4c488d0..42e96fd71 100644 --- a/docs/apidocs/allclasses-noframe.html +++ b/docs/apidocs/allclasses-noframe.html @@ -2,9 +2,9 @@ - -All Classes (picocli 2.2.0 API) - + +All Classes (picocli 2.2.1 API) + diff --git a/docs/apidocs/constant-values.html b/docs/apidocs/constant-values.html index 8cecd7ac2..362e17e86 100644 --- a/docs/apidocs/constant-values.html +++ b/docs/apidocs/constant-values.html @@ -2,9 +2,9 @@ - -Constant Field Values (picocli 2.2.0 API) - + +Constant Field Values (picocli 2.2.1 API) + @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/apidocs/overview-summary.html b/docs/apidocs/overview-summary.html index 23baaccc3..1ccad19db 100644 --- a/docs/apidocs/overview-summary.html +++ b/docs/apidocs/overview-summary.html @@ -2,9 +2,9 @@ - -Overview (picocli 2.2.0 API) - + +Overview (picocli 2.2.1 API) + @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/apidocs/picocli/groovy/package-summary.html b/docs/apidocs/picocli/groovy/package-summary.html index eab6370bb..f61ed3f1d 100644 --- a/docs/apidocs/picocli/groovy/package-summary.html +++ b/docs/apidocs/picocli/groovy/package-summary.html @@ -2,9 +2,9 @@ - -picocli.groovy (picocli 2.2.0 API) - + +picocli.groovy (picocli 2.2.1 API) + @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/docs/apidocs/picocli/package-summary.html b/docs/apidocs/picocli/package-summary.html index 33c5bfb28..9e7e12479 100644 --- a/docs/apidocs/picocli/package-summary.html +++ b/docs/apidocs/picocli/package-summary.html @@ -2,9 +2,9 @@ - -picocli (picocli 2.2.0 API) - + +picocli (picocli 2.2.1 API) + @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@