censiq 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "censiq",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Test AI agents against industry security standards from your terminal or CI pipeline",
5
5
  "main": "src/index.js",
6
6
  "bin": "bin/censiq.js",
package/src/index.js CHANGED
@@ -11,7 +11,7 @@ const program = new Command();
11
11
  program
12
12
  .name('censiq')
13
13
  .description('Test AI agents against industry security standards')
14
- .version('0.1.0');
14
+ .version(require('../package.json').version);
15
15
 
16
16
  program
17
17
  .command('login')