From 614b2bcd9361f53bb96fde8df9ea7cc7ee37f8ef Mon Sep 17 00:00:00 2001 From: sagpembo Date: Wed, 12 Oct 2022 18:58:49 +0100 Subject: [PATCH] bumped version --- README.md | 2 +- wmiocli.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d22cef..eda926a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This requires you to provide your tenant domain name, along with a user and pass The --help parameter provides further information on how to use this along with some examples of its usage. This CLI tool has been tested against -* webMethods.io Integration v10.12 +* webMethods.io Integration v10.15 # License This project is licensed under the Apache 2.0 License - see the LICENSE file for details diff --git a/wmiocli.js b/wmiocli.js index 9702e98..4f1d57c 100644 --- a/wmiocli.js +++ b/wmiocli.js @@ -3,6 +3,8 @@ * Copyright 2022 Software AG * Apache-2.0 */ + +const versionNo = "2022.10.1" const { Command, Option } = require('commander'); const { exit } = require('process'); const readline = require('readline-sync'); @@ -134,7 +136,7 @@ const program = new Command(); program //Program Info - .version('2022.07.3') + .version(versionNo) //required options .option('-d, --domain ', 'Tenant Doamin Name, e.g. "tenant.int-aws-us.webmethods.io"')