@codebakers/cli 3.9.2 → 3.9.3

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.
package/dist/index.js CHANGED
@@ -34,7 +34,7 @@ const api_js_1 = require("./lib/api.js");
34
34
  // ============================================
35
35
  // Automatic Update Notification
36
36
  // ============================================
37
- const CURRENT_VERSION = '3.9.2';
37
+ const CURRENT_VERSION = '3.9.3';
38
38
  async function checkForUpdatesInBackground() {
39
39
  // Check if we have a valid cached result first (fast path)
40
40
  const cached = (0, config_js_2.getCachedUpdateInfo)();
@@ -195,7 +195,7 @@ const program = new commander_1.Command();
195
195
  program
196
196
  .name('codebakers')
197
197
  .description('CodeBakers CLI - Production patterns for AI-assisted development')
198
- .version('3.9.2');
198
+ .version('3.9.3');
199
199
  // Zero-friction trial entry (no signup required)
200
200
  program
201
201
  .command('go')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebakers/cli",
3
- "version": "3.9.2",
3
+ "version": "3.9.3",
4
4
  "description": "CodeBakers CLI - Production patterns for AI-assisted development",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -34,7 +34,7 @@ import { join } from 'path';
34
34
  // Automatic Update Notification
35
35
  // ============================================
36
36
 
37
- const CURRENT_VERSION = '3.9.2';
37
+ const CURRENT_VERSION = '3.9.3';
38
38
 
39
39
  async function checkForUpdatesInBackground(): Promise<void> {
40
40
  // Check if we have a valid cached result first (fast path)
@@ -216,7 +216,7 @@ const program = new Command();
216
216
  program
217
217
  .name('codebakers')
218
218
  .description('CodeBakers CLI - Production patterns for AI-assisted development')
219
- .version('3.9.2');
219
+ .version('3.9.3');
220
220
 
221
221
  // Zero-friction trial entry (no signup required)
222
222
  program