Skip to content

Commit

Permalink
Merge branch 'develop' into temp02
Browse files Browse the repository at this point in the history
  • Loading branch information
k-rajat19 committed Mar 6, 2022
2 parents 9915db9 + a5018ec commit 8bd3d8f
Show file tree
Hide file tree
Showing 4 changed files with 282 additions and 6,627 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
5.3.2:
date: 2022-03-03
fixed bugs:
- Allow the process to exit naturally in CLI mode
chores:
- Updated dependencies

5.3.1:
date: 2022-01-10
chores:
Expand Down
2 changes: 1 addition & 1 deletion bin/newman.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ program
console.error(`error: ${err.message || err}\n`);
err.friendly && console.error(` ${err.friendly}\n`);
}
runError && !_.get(options, 'suppressExitCode') && process.exit(1);
runError && !_.get(options, 'suppressExitCode') && (process.exitCode = 1);
});
});

Expand Down

0 comments on commit 8bd3d8f

Please sign in to comment.