Skip to content

Commit

Permalink
Merge pull request #30 from AikidoSec/bump-version
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
willem-delbare authored Dec 5, 2024
2 parents 9eb9cc1 + aecb96d commit 96c2725
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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.6' };
const apiOptions = { version: '1.0.7' };
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.6' };
const apiOptions = { version: '1.0.7' };
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.6');
.version('1.0.7');
apiKey.cliSetup(program);
scan.cliSetup(program);
scanRelease.cliSetup(program);
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.6' };
const apiOptions: TScanApiOptions = { version: '1.0.7' };
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.6' };
const apiOptions: TScanApiOptions = { version: '1.0.7' };
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.6');
.version('1.0.7');

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

0 comments on commit 96c2725

Please sign in to comment.