bump version to 1.4.0

This commit is contained in:
2026-01-05 15:56:14 +01:00
parent 7b9e39f9d0
commit 6779e28792
3 changed files with 34 additions and 33 deletions

View File

@@ -10,8 +10,8 @@ import com.infendro.cli.util.Regex.OPTION
class Command private constructor(
val name: String?,
val commands: List<Command>,
val options: List<Option<*>>,
val arguments: List<Argument<*>>,
val options: List<Option<*>>,
internal val execute: Context.() -> Unit,
) {
val fallback: Boolean
@@ -97,7 +97,7 @@ class Command private constructor(
if (!::_execute.isInitialized)
_execute = {}
return Command(name, commands, options, arguments, _execute)
return Command(name, commands, arguments, options, _execute)
}
}