From 49d794702813959f7c37d9265eaeae70053b08bc Mon Sep 17 00:00:00 2001 From: Mingholy Date: Tue, 16 Sep 2025 10:20:51 +0800 Subject: [PATCH] chore: bump version to 0.0.11 (#622) --- CHANGELOG.md | 18 ++++++++++++++++++ docs/deployment.md | 2 +- package-lock.json | 12 ++++++------ package.json | 4 ++-- packages/cli/package.json | 4 ++-- packages/core/package.json | 2 +- packages/test-utils/package.json | 2 +- packages/vscode-ide-companion/package.json | 2 +- 8 files changed, 32 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index deef6c22..6d0d2fb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.0.11 + +- Added subagents feature with file-based configuration system for specialized AI assistants. +- Added Welcome Back Dialog with project summary and enhanced quit options. +- Fixed performance issues with SharedTokenManager causing 20-minute delays. +- Fixed tool calls UI issues and improved user experience. +- Fixed credential clearing when switching authentication types. +- Enhanced subagent capabilities to use tools requiring user confirmation. +- Improved ReadManyFiles tool with shared line limits across files. +- Re-implemented tokenLimits class for better compatibility with Qwen and other model types. +- Fixed chunk validation to avoid unnecessary retries. +- Resolved EditTool naming inconsistency causing agent confusion loops. +- Fixed unexpected re-authentication when auth-token is expired. +- Added Terminal Bench integration tests. +- Updated multilingual documentation links in README. +- Fixed various Windows compatibility issues. +- Miscellaneous improvements and bug fixes. + ## 0.0.10 - Synced upstream `gemini-cli` to v0.2.1. diff --git a/docs/deployment.md b/docs/deployment.md index fc9f3c6a..ca2b3ec5 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -41,7 +41,7 @@ For security and isolation, Qwen Code can be run inside a container. This is the You can run the published sandbox image directly. This is useful for environments where you only have Docker and want to run the CLI. ```bash # Run the published sandbox image - docker run --rm -it ghcr.io/qwenlm/qwen-code:0.0.10 + docker run --rm -it ghcr.io/qwenlm/qwen-code:0.0.11 ``` - **Using the `--sandbox` flag:** If you have Qwen Code installed locally (using the standard installation described above), you can instruct it to run inside the sandbox container. diff --git a/package-lock.json b/package-lock.json index 1b3a1b92..146686dc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@qwen-code/qwen-code", - "version": "0.0.10", + "version": "0.0.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@qwen-code/qwen-code", - "version": "0.0.10", + "version": "0.0.11", "workspaces": [ "packages/*" ], @@ -12512,7 +12512,7 @@ }, "packages/cli": { "name": "@qwen-code/qwen-code", - "version": "0.0.10", + "version": "0.0.11", "dependencies": { "@google/genai": "1.9.0", "@iarna/toml": "^2.2.5", @@ -12696,7 +12696,7 @@ }, "packages/core": { "name": "@qwen-code/qwen-code-core", - "version": "0.0.10", + "version": "0.0.11", "dependencies": { "@google/genai": "1.13.0", "@modelcontextprotocol/sdk": "^1.11.0", @@ -12861,7 +12861,7 @@ }, "packages/test-utils": { "name": "@qwen-code/qwen-code-test-utils", - "version": "0.0.10", + "version": "0.0.11", "license": "Apache-2.0", "devDependencies": { "typescript": "^5.3.3" @@ -12872,7 +12872,7 @@ }, "packages/vscode-ide-companion": { "name": "qwen-code-vscode-ide-companion", - "version": "0.0.10", + "version": "0.0.11", "license": "LICENSE", "dependencies": { "@modelcontextprotocol/sdk": "^1.15.1", diff --git a/package.json b/package.json index be6a3215..74a16a4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@qwen-code/qwen-code", - "version": "0.0.10", + "version": "0.0.11", "engines": { "node": ">=20.0.0" }, @@ -13,7 +13,7 @@ "url": "git+https://github.com/QwenLM/qwen-code.git" }, "config": { - "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.10" + "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.11" }, "scripts": { "start": "node scripts/start.js", diff --git a/packages/cli/package.json b/packages/cli/package.json index 6979d034..cd0f069c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@qwen-code/qwen-code", - "version": "0.0.10", + "version": "0.0.11", "description": "Qwen Code", "repository": { "type": "git", @@ -25,7 +25,7 @@ "dist" ], "config": { - "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.10" + "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.11" }, "dependencies": { "@google/genai": "1.9.0", diff --git a/packages/core/package.json b/packages/core/package.json index a207e812..e2a22d02 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@qwen-code/qwen-code-core", - "version": "0.0.10", + "version": "0.0.11", "description": "Qwen Code Core", "repository": { "type": "git", diff --git a/packages/test-utils/package.json b/packages/test-utils/package.json index de87bfff..3ba167d2 100644 --- a/packages/test-utils/package.json +++ b/packages/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@qwen-code/qwen-code-test-utils", - "version": "0.0.10", + "version": "0.0.11", "private": true, "main": "src/index.ts", "license": "Apache-2.0", diff --git a/packages/vscode-ide-companion/package.json b/packages/vscode-ide-companion/package.json index 182056a0..cad4e99b 100644 --- a/packages/vscode-ide-companion/package.json +++ b/packages/vscode-ide-companion/package.json @@ -2,7 +2,7 @@ "name": "qwen-code-vscode-ide-companion", "displayName": "Qwen Code Companion", "description": "Enable Qwen Code with direct access to your VS Code workspace.", - "version": "0.0.10", + "version": "0.0.11", "publisher": "qwenlm", "icon": "assets/icon.png", "repository": {