@vibe-db/cli 1.1.1 → 1.2.1

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/bin/vibedb.js +2 -1
  2. package/package.json +1 -1
package/bin/vibedb.js CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  const { Command } = require('commander');
4
4
  const chalk = require('chalk');
5
+ const { version } = require('../package.json');
5
6
  const signupCommand = require('../src/commands/signup');
6
7
  const loginCommand = require('../src/commands/login');
7
8
  const logoutCommand = require('../src/commands/logout');
@@ -17,7 +18,7 @@ const program = new Command();
17
18
  program
18
19
  .name('vibedb')
19
20
  .description('VibeDB CLI - Instant database provisioning for AI-assisted development')
20
- .version('1.1.0');
21
+ .version(version);
21
22
 
22
23
  program
23
24
  .command('signup')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-db/cli",
3
- "version": "1.1.1",
3
+ "version": "1.2.1",
4
4
  "description": "Command-line interface for VibeDB - instant database provisioning for AI-assisted development",
5
5
  "main": "bin/vibedb.js",
6
6
  "bin": {