Skip to content

Commit 18176e6

Browse files
authored
Merge pull request #7 from SoftwareAG/develop
bumped version
2 parents 91b0043 + 614b2bc commit 18176e6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This requires you to provide your tenant domain name, along with a user and pass
44
The --help parameter provides further information on how to use this along with some examples of its usage.
55

66
This CLI tool has been tested against
7-
* webMethods.io Integration v10.12
7+
* webMethods.io Integration v10.15
88

99
# License
1010
This project is licensed under the Apache 2.0 License - see the LICENSE file for details

wmiocli.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
* Copyright 2022 Software AG
44
* Apache-2.0
55
*/
6+
7+
const versionNo = "2022.10.1"
68
const { Command, Option } = require('commander');
79
const { exit } = require('process');
810
const readline = require('readline-sync');
@@ -134,7 +136,7 @@ const program = new Command();
134136
program
135137

136138
//Program Info
137-
.version('2022.07.3')
139+
.version(versionNo)
138140

139141
//required options
140142
.option('-d, --domain <tenantDomain>', 'Tenant Doamin Name, e.g. "tenant.int-aws-us.webmethods.io"')

0 commit comments

Comments
 (0)