Skip to content

Commit 7dde6cf

Browse files
authored
release: 版本切到 2026.08.02.2 (#36)
#35 的两处 Windows 修复发出去: - run_lines_idle 终止后不再可能空转(5s 补杀 / 15s 放弃等待,退出码 128+9) - checker 冒烟判据在 Windows 收紧到与 linux 同档(配合 d2mcpp#87 已合入) 版本三处同源(release.yml 会硬比对 d2x --version):mcpp.toml / protocol/mcpp.toml / src/config.cppm Info::VERSION。 本地实测 d2x --version = 2026.08.02.2,e2e 五组 ALL GREEN。
1 parent 4d7fbc9 commit 7dde6cf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

mcpp.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "d2x"
3-
version = "2026.08.02.1"
3+
version = "2026.08.02.2"
44
description = "AI-powered development assistant for C++ projects"
55
license = "Apache-2.0"
66
repo = "https://github.com/d2learn/d2x"

protocol/mcpp.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "d2x-protocol"
3-
version = "2026.08.02.1"
3+
version = "2026.08.02.2"
44
description = "d2x Provider/Frontend 协议层:类型、编解码、传输(参考实现;规范性载体是协议文档,跨语言合规判据是 conformance 套件)"
55
license = "Apache-2.0"
66

src/config.cppm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export struct EnvVars;
1717
export class Config;
1818

1919
struct Info {
20-
static constexpr std::string_view VERSION = "2026.08.02.1"; // 日期版本制 YYYY.MM.DD.N(见 2026-07-24 设计文档决策记录)
20+
static constexpr std::string_view VERSION = "2026.08.02.2"; // 日期版本制 YYYY.MM.DD.N(见 2026-07-24 设计文档决策记录)
2121
static constexpr std::string_view REPO = "https://github.com/d2learn/d2x";
2222
};
2323

0 commit comments

Comments
 (0)