From 5aacda9feb3b56680516c9fa559adb0800b6d53d Mon Sep 17 00:00:00 2001 From: sunrisepeak Date: Sun, 2 Aug 2026 03:24:44 +0800 Subject: [PATCH] =?UTF-8?q?release:=20=E7=89=88=E6=9C=AC=E5=88=87=E5=88=B0?= =?UTF-8?q?=202026.08.02.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 把 #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。 --- mcpp.toml | 2 +- protocol/mcpp.toml | 2 +- src/config.cppm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mcpp.toml b/mcpp.toml index d67ba1b..c1d00aa 100644 --- a/mcpp.toml +++ b/mcpp.toml @@ -1,6 +1,6 @@ [package] name = "d2x" -version = "2026.08.02.1" +version = "2026.08.02.2" description = "AI-powered development assistant for C++ projects" license = "Apache-2.0" repo = "https://github.com/d2learn/d2x" diff --git a/protocol/mcpp.toml b/protocol/mcpp.toml index 9abec12..97d2840 100644 --- a/protocol/mcpp.toml +++ b/protocol/mcpp.toml @@ -1,6 +1,6 @@ [package] name = "d2x-protocol" -version = "2026.08.02.1" +version = "2026.08.02.2" description = "d2x Provider/Frontend 协议层:类型、编解码、传输(参考实现;规范性载体是协议文档,跨语言合规判据是 conformance 套件)" license = "Apache-2.0" diff --git a/src/config.cppm b/src/config.cppm index b61b790..827a6ef 100644 --- a/src/config.cppm +++ b/src/config.cppm @@ -17,7 +17,7 @@ export struct EnvVars; export class Config; struct Info { - static constexpr std::string_view VERSION = "2026.08.02.1"; // 日期版本制 YYYY.MM.DD.N(见 2026-07-24 设计文档决策记录) + static constexpr std::string_view VERSION = "2026.08.02.2"; // 日期版本制 YYYY.MM.DD.N(见 2026-07-24 设计文档决策记录) static constexpr std::string_view REPO = "https://github.com/d2learn/d2x"; };