@qwen-code/qwen-code 0.2.0-nightly.20251109.3c01c715 → 0.2.0-preview.0
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/cli.js +4 -5
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -182650,7 +182650,7 @@ function createContentGeneratorConfig(config, authType, generationConfig) {
|
|
|
182650
182650
|
};
|
|
182651
182651
|
}
|
|
182652
182652
|
async function createContentGenerator(config, gcConfig, sessionId2) {
|
|
182653
|
-
const version2 = "0.2.0-
|
|
182653
|
+
const version2 = "0.2.0-preview.0";
|
|
182654
182654
|
const userAgent2 = `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
182655
182655
|
const baseHeaders = {
|
|
182656
182656
|
"User-Agent": userAgent2
|
|
@@ -338603,7 +338603,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
338603
338603
|
// packages/cli/src/utils/version.ts
|
|
338604
338604
|
async function getCliVersion() {
|
|
338605
338605
|
const pkgJson = await getPackageJson();
|
|
338606
|
-
return "0.2.0-
|
|
338606
|
+
return "0.2.0-preview.0";
|
|
338607
338607
|
}
|
|
338608
338608
|
__name(getCliVersion, "getCliVersion");
|
|
338609
338609
|
|
|
@@ -340214,7 +340214,7 @@ import { execSync as execSync4 } from "node:child_process";
|
|
|
340214
340214
|
|
|
340215
340215
|
// packages/cli/src/generated/git-commit.ts
|
|
340216
340216
|
init_esbuild_shims();
|
|
340217
|
-
var GIT_COMMIT_INFO2 = "
|
|
340217
|
+
var GIT_COMMIT_INFO2 = "b4ec08ed";
|
|
340218
340218
|
|
|
340219
340219
|
// packages/cli/src/utils/systemInfo.ts
|
|
340220
340220
|
async function getNpmVersion() {
|
|
@@ -353783,7 +353783,6 @@ init_esbuild_shims();
|
|
|
353783
353783
|
// packages/cli/src/zed-integration/acp.ts
|
|
353784
353784
|
init_esbuild_shims();
|
|
353785
353785
|
init_zod();
|
|
353786
|
-
import { EOL as EOL4 } from "node:os";
|
|
353787
353786
|
|
|
353788
353787
|
// packages/cli/src/zed-integration/schema.ts
|
|
353789
353788
|
init_esbuild_shims();
|
|
@@ -354189,7 +354188,7 @@ var Connection = class {
|
|
|
354189
354188
|
const decoder = new TextDecoder();
|
|
354190
354189
|
for await (const chunk of output) {
|
|
354191
354190
|
content += decoder.decode(chunk, { stream: true });
|
|
354192
|
-
const lines = content.split(
|
|
354191
|
+
const lines = content.split("\n");
|
|
354193
354192
|
content = lines.pop() || "";
|
|
354194
354193
|
for (const line of lines) {
|
|
354195
354194
|
const trimmedLine = line.trim();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.2.0-
|
|
3
|
+
"version": "0.2.0-preview.0",
|
|
4
4
|
"description": "Qwen Code - AI-powered coding assistant",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"config": {
|
|
22
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.0-
|
|
22
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.0-preview.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tiktoken": "^1.0.21"
|