Skip to content

Commit 987b783

Browse files
chore: bump version to 2026.8.16.2 (#439)
Ships #436: an installed msvc toolset was invisible in `toolchain list`. The v2026.8.16.1 tag was cut before that fix, so `latest` currently carries it -- everything else in .1 is fine (install, build, default and remove all work; only the listing row was missing). Co-authored-by: speak-agent <248744407+speak-agent@users.noreply.github.com>
1 parent 47a6b89 commit 987b783

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
> 本文件追踪 `mcpp-community/mcpp` 公开仓的版本演进。
44
> 格式参考 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/)
55
6+
## [2026.8.16.2] — 2026-08-16
7+
8+
### 修复
9+
10+
- **装好的 msvc toolset 在 `mcpp toolchain list` 里不出现。**
11+
12+
枚举问的是 `toolchain_frontend(root / "bin", pkg)`,而 cl.exe 在
13+
`VC/Tools/MSVC/<ver>/bin/Host<h>/<arch>/` —— 深四层。拿不到就 `continue`,
14+
于是每一个 msvc payload 都装得好好的、然后**看不见**
15+
16+
这个布局有三个地方需要知道:安装知道、构建知道、列表不知道 ——
17+
一条规则被内联抄了第三份时的典型结果。三者现在共用
18+
`payload_frontend(payloadRoot, pkg, family)`
19+
20+
`2026.8.16.1` 带着这条(tag 打在修复之前),其余部分不受影响 ——
21+
install / build / default / remove 都是好的,只有 list 少一行。
22+
623
## [2026.8.16.1] — 2026-08-16
724

825
### 工具链

mcpp.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mcpp"
3-
version = "2026.8.16.1"
3+
version = "2026.8.16.2"
44
description = "Modern C++ build & package management tool"
55
license = "Apache-2.0"
66
authors = ["mcpp-community"]

src/version.cppm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ import std;
3131

3232
export namespace mcpp {
3333

34-
inline constexpr std::string_view MCPP_VERSION = "2026.8.16.1";
34+
inline constexpr std::string_view MCPP_VERSION = "2026.8.16.2";
3535

3636
} // namespace mcpp

0 commit comments

Comments
 (0)