From 2292b753d4cee34059b8f2d81c9843b3a6e6376c Mon Sep 17 00:00:00 2001 From: AJ Alt Date: Fri, 19 Jun 2020 18:12:25 -0700 Subject: [PATCH] Release version 2.8.0 --- CHANGELOG.md | 4 +++- gradle.properties | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bdec37b4..a913dec1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,15 @@ # Changelog ## [Unreleased] + +## [2.8.0] - 2020-06-19 ### Added - Added `error` parameter to `PrintMessage` and `PrintHelpMessage`. When `true`, `CliktCommand.main` will exit with status code 1. ([#187](https://github.com/ajalt/clikt/issues/187)) ### Changed - When `printHelpOnEmptyArgs` is `true` and no arguments are present, or when `invokeWithoutSubcommand` is `false` and no subcommand is present, `CliktCommand.main` will now exit with status code 1 rather than 0. - `restrictTo` now works with any `Comparable` value, not just `Number`. -- `CliktCommand.main` now accepts `Array`, not just `Array`. +- `CliktCommand.main` now accepts `Array`, not just `Array`. ([#196](https://github.com/ajalt/clikt/issues/196)) ### Fixed - Fixed option values being reset when calling multiple subcommands with `allowMultipleSubcommands=true` ([#190](https://github.com/ajalt/clikt/issues/190)) diff --git a/gradle.properties b/gradle.properties index 627f9857b..f884855e9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=2.7.1 +VERSION_NAME=2.8.0 kotlin.native.ignoreDisabledTargets=true