Skip to content

Commit

Permalink
Merge pull request #24 from AikidoSec/update-version
Browse files Browse the repository at this point in the history
update version
  • Loading branch information
willem-delbare authored Oct 15, 2024
2 parents f059f3a + 077757f commit a638d95
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/commands/scan.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const scan = async ({ repoId, baseCommitId, headCommitId, branchName, opt
pollStatus();
};
const parseCliOptions = (userCliOptions) => {
const apiOptions = { version: '1.0.5' };
const apiOptions = { version: '1.0.6' };
const cliOptions = { pollInterval: 5 };
if (userCliOptions.pullRequestTitle) {
apiOptions.pull_request_metadata = {
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/scanRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const scan = async ({ repoId, commitId, options, pollInterval = 10, onSta
pollStatus();
};
const parseCliOptions = (userCliOptions) => {
const apiOptions = { version: '1.0.5' };
const apiOptions = { version: '1.0.6' };
const cliOptions = { pollInterval: 10 };
if (userCliOptions.pullRequestTitle) {
apiOptions.pull_request_metadata = {
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const program = new Command();
program
.name('Aikido API Client')
.description('CLI api client to easily integrate the Aikido public CI API into custom deploy scripts')
.version('1.0.5');
.version('1.0.6');
apiKey.cliSetup(program);
scan.cliSetup(program);
scanRelease.cliSetup(program);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aikidosec/ci-api-client",
"version": "1.0.5",
"version": "1.0.6",
"description": "CLI api client to easily integrate the Aikido public CI API into custom deploy scripts",
"license": "MIT",
"author": "Bert Devriese <bert@builtinbruges.com>",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/scan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export const scan = async ({
const parseCliOptions = (userCliOptions: TScanUserCliOptions) => {
// Version provided to the API corresponds with the version in package.json
// of the cli client
const apiOptions: TScanApiOptions = { version: '1.0.5' };
const apiOptions: TScanApiOptions = { version: '1.0.6' };
const cliOptions: TScanCliOptions = { pollInterval: 5 };

if (userCliOptions.pullRequestTitle) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/scanRelease.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export const scan = async ({
const parseCliOptions = (userCliOptions: TScanUserCliOptions) => {
// Version provided to the API corresponds with the version in package.json
// of the cli client
const apiOptions: TScanApiOptions = { version: '1.0.5' };
const apiOptions: TScanApiOptions = { version: '1.0.6' };
const cliOptions: TScanCliOptions = { pollInterval: 10 };

if (userCliOptions.pullRequestTitle) {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ program
.description(
'CLI api client to easily integrate the Aikido public CI API into custom deploy scripts'
)
.version('1.0.5');
.version('1.0.6');

// Load in all app commands and set them up in the `program` instance
apiKey.cliSetup(program);
Expand Down

0 comments on commit a638d95

Please sign in to comment.