Skip to content

Commit

Permalink
Release picocli version 4.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Apr 9, 2023
1 parent c0b0687 commit aeac8eb
Show file tree
Hide file tree
Showing 529 changed files with 2,676 additions and 3,306 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The user manual has examples of integrating with [Guice](https://picocli.info/#_

### Releases
* [All Releases](https://github.com/remkop/picocli/releases)
* Latest: 4.7.1 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.7.1)
* Latest: 4.7.2 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.7.2)
* Older: Picocli 4.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.0.0)
* Older: Picocli 3.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0)
* Older: Picocli 2.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v2.0.0)
Expand All @@ -88,7 +88,7 @@ The user manual has examples of integrating with [Guice](https://picocli.info/#_
* [4.x User manual: https://picocli.info](https://picocli.info)
* [4.x Quick Guide](https://picocli.info/quick-guide.html)
* [4.x API Javadoc](https://picocli.info/apidocs/)
* [PREVIEW: Modular Javadoc for all artifacts (4.7.1-SNAPSHOT)](https://picocli.info/apidocs-all/)
* [PREVIEW: Modular Javadoc for all artifacts (4.7.2-SNAPSHOT)](https://picocli.info/apidocs-all/)
* [Command line autocompletion](https://picocli.info/autocomplete.html)
* [Programmatic API](https://picocli.info/picocli-programmatic-api.html)
* [FAQ](https://github.com/remkop/picocli/wiki/FAQ)
Expand Down Expand Up @@ -270,9 +270,9 @@ If you like picocli, help others discover picocli:
#### Spread the joy! :tada:
* Tweet about picocli! What do you like about it? How has it helped you? How is it different from the alternatives?
* Mention that your project uses picocli in the documentation of your project.
* 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)
* Show that your GitHub project uses picocli, with this badge in your README.md: [![picocli](https://img.shields.io/badge/picocli-4.7.2-green.svg)](https://github.com/remkop/picocli)
```
[![picocli](https://img.shields.io/badge/picocli-4.7.1-green.svg)](https://github.com/remkop/picocli)
[![picocli](https://img.shields.io/badge/picocli-4.7.2-green.svg)](https://github.com/remkop/picocli)
```

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

### Gradle
```
implementation 'info.picocli:picocli:4.7.1'
implementation 'info.picocli:picocli:4.7.2'
```
### Maven
```
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>4.7.1</version>
<version>4.7.2</version>
</dependency>
```
### Scala SBT
```
libraryDependencies += "info.picocli" % "picocli" % "4.7.1"
libraryDependencies += "info.picocli" % "picocli" % "4.7.2"
```
### Ivy
```
<dependency org="info.picocli" name="picocli" rev="4.7.1" />
<dependency org="info.picocli" name="picocli" rev="4.7.2" />
```
### Grape
```groovy
@Grapes(
@Grab(group='info.picocli', module='picocli', version='4.7.1')
@Grab(group='info.picocli', module='picocli', version='4.7.2')
)
```
### Leiningen
```
[info.picocli/picocli "4.7.1"]
[info.picocli/picocli "4.7.2"]
```
### Buildr
```
'info.picocli:picocli:jar:4.7.1'
'info.picocli:picocli:jar:4.7.2'
```

### JBang
```
//DEPS info.picocli:picocli:4.7.1
//DEPS info.picocli:picocli:4.7.2
```

11 changes: 7 additions & 4 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# picocli Release Notes

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

This release includes bugfixes and enhancements.



This is the eighty-first public release.
Picocli follows [semantic versioning](https://semver.org/).
Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).
Expand All @@ -19,6 +17,11 @@ Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).

## <a name="4.7.2-new"></a> New and Noteworthy

* Bugfix: `fallbackValue=Option.NULL_VALUE` did not work for `Collection` or array options.
* Fixed `isJansiConsoleInstalled` performance issue.
* Kotlin enhancement: improved `paramLabel` string auto-generated from Kotlin `internal` methods which have mangled names with embedded "$".
* Various documentation fixes.

## <a name="4.7.2-fixes"></a> Fixed issues
* [#1959] API: Add ability to enable loading resource bundles in annotation processor for tests.
* [#1993] Bugfix: `fallbackValue=Option.NULL_VALUE` did not work for `Collection` or array options. Thanks to [Jiri Daněk](https://github.com/jiridanek) for raising this.
Expand All @@ -29,8 +32,8 @@ Artifacts in this release are signed by Remko Popma (6601 E5C0 8DCC BB96).
* [#1956] Doc: Fix broken link in user manual. Thanks to [Andreas Deininger](https://github.com/deining) for the pull request.
* [#1955] DEP: Bump asciidoctorj from 2.5.5 to 2.5.7. Thanks to [Andreas Deininger](https://github.com/deining) for the pull request.
* [#1980] DEP: Bump actions/checkout from 3.3.0 to 3.5.0
* [#1985] DEP: Bump actions/setup-java from 3.10.0 to 3.11.0
* [#1952] DEP: Bump actions/setup-java from 3.9.0 to 3.10.0
* [#1985] DEP: Bump actions/setup-java from 3.10.0 to 3.11.0
* [#1941] DEP: Bump emibcn/badge-action from 1.2.4 to 2.0.2
* [#1942] DEP: Bump github/codeql-action from 2.1.39 to 2.2.1
* [#1953] DEP: Bump github/codeql-action from 2.2.1 to 2.2.3
Expand Down
6 changes: 3 additions & 3 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ ext {
// projectPreviousPublishedVersion is non-SNAPSHOT, only published releases
projectPreviousPublishedVersion = "4\\.7\\.1" // for task bumpReadmeVersion
// projectPreviousVersionRegex may be a SNAPSHOT
projectPreviousVersionRegex = "4\\.7\\.1" // for task bumpVersion
projectVersion = "4.7.2-SNAPSHOT" // for all build tasks
releaseDate = "2023-01-27" // for task bumpVersion
projectPreviousVersionRegex = "4\\.7\\.2-SNAPSHOT" // for task bumpVersion
projectVersion = "4.7.2" // for all build tasks
releaseDate = "2023-04-09" // for task bumpVersion
releaseDatePreviousRegex = "2023\\-01\\-27" // for task bumpVersion

// DEPENDENCIES
Expand Down
Loading

0 comments on commit aeac8eb

Please sign in to comment.