This commit is contained in:
dal 2025-09-10 11:13:41 -06:00
parent 9210db0869
commit 78f69d87d2
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
3 changed files with 4 additions and 4 deletions

View File

@ -169,8 +169,8 @@ jobs:
- name: Extract version from package.json
id: get_version
run: |
# Update this to 0.3.0 as requested
VERSION="0.3.0"
# Update this to 0.3.1 as requested
VERSION="0.3.1"
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Extracted version: $VERSION"

View File

@ -1,6 +1,6 @@
{
"name": "@buster-app/cli",
"version": "0.3.0",
"version": "0.3.1",
"description": "Buster CLI - TypeScript version",
"type": "module",
"bin": {

View File

@ -10,7 +10,7 @@ import { InitCommand } from './commands/init.js';
program
.name('buster')
.description('Buster CLI - AI-powered data analytics platform')
.version('0.3.0');
.version('0.3.1');
// Auth command - authentication management
program