Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mcpp.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion protocol/mcpp.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion src/config.cppm
Original file line number Diff line number Diff line change
Expand Up @@ -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";
};

Expand Down
Loading