From f851aefaf04ca9f3a24d4a4cdfad8a0c1d624be5 Mon Sep 17 00:00:00 2001 From: tom Date: Fri, 11 Sep 2026 15:14:22 +0800 Subject: [PATCH] chore(release): prepare 0.6.1 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- src/constants.ts | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 572e654..31096d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1] — 2026-09-11 + +### Changed + +- Show the GTM balance separately in `aisa balance`. The account and + key-available totals now reflect the API's combined PAYG and GTM balances. + ## [0.6.0] — 2026-09-10 ### Changed diff --git a/package-lock.json b/package-lock.json index f007483..ceccbbc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aisa-one/cli", - "version": "0.6.0", + "version": "0.6.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@aisa-one/cli", - "version": "0.6.0", + "version": "0.6.1", "license": "MIT", "dependencies": { "chalk": "^5.3.0", diff --git a/package.json b/package.json index 77f0836..a93ebba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aisa-one/cli", - "version": "0.6.0", + "version": "0.6.1", "description": "CLI for the AIsa unified AI infrastructure platform - one API key for 80+ LLMs and 900+ endpoints across finance, search, social, and video APIs", "type": "module", "main": "dist/index.js", diff --git a/src/constants.ts b/src/constants.ts index aaeba20..321cdb7 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,4 +1,4 @@ -export const VERSION = "0.6.0"; +export const VERSION = "0.6.1"; /** Root of the platform. Per-surface bases are derived in api.ts#resolveBases. */ export const BASE_URL = "https://api.aisa.one"; export const ENV_VAR_NAME = "AISA_API_KEY";