new version 1.2

This commit is contained in:
Timo Hocker 2020-05-18 12:38:28 +02:00
parent 0307cb7916
commit de1c73e425
2 changed files with 3 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -5,7 +5,7 @@ pipeline {
VERSION = VersionNumber([ VERSION = VersionNumber([
versionNumberString: versionNumberString:
'${BUILDS_ALL_TIME}', '${BUILDS_ALL_TIME}',
versionPrefix: '1.1.', versionPrefix: '1.2.',
worstResultForIncrement: 'SUCCESS' worstResultForIncrement: 'SUCCESS'
]) ])
} }

View File

@ -1,6 +1,6 @@
# @sapphirecode/console-app # @sapphirecode/console-app
version: 1.1.x version: 1.2.x
read parameters from env, console args or interactively read parameters from env, console args or interactively
@ -29,6 +29,7 @@ const reader = new InteractiveOptions([
env: 'fooenv', // environment variable to read from (optional) env: 'fooenv', // environment variable to read from (optional)
description: 'the switch foo', // description in the help page (optional) description: 'the switch foo', // description in the help page (optional)
message: 'should foo be true?', // message when asking interactively (optional) message: 'should foo be true?', // message when asking interactively (optional)
preset: [] // preset choices for string and path types (optional)
}, },
]); ]);