From 97a0abc2126c9dbe271eb8977bc8fc91fa51b531 Mon Sep 17 00:00:00 2001 From: speak-agent <248744407+speak-agent@users.noreply.github.com> Date: Wed, 19 Aug 2026 07:40:02 +0800 Subject: [PATCH] =?UTF-8?q?chore(release):=202026.8.19.1=20=E2=80=94=20bar?= =?UTF-8?q?e-metal=20targets=20and=20BSP-supplied=20target=20worlds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ships `--target riscv64-none-elf` / `riscv32-none-elf`: mcpp builds a freestanding image from C++20 modules and `mcpp run --target-triple` boots it through a per-target `runner` template, with the C library, startup code, memory layout and ISA profile all supplied by an ordinary dependency package (#455). New surface a package can use: * `mcpp:link-script=` / `mcpp::link_script(p)` — reaches the consumer's link * `mcpp::xpkg_dir(ns, name)` — where an [xlings] deps payload landed * `[target.].runner` — how to execute what this host cannot --- mcpp.toml | 2 +- src/version.cppm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mcpp.toml b/mcpp.toml index 1a84aee2..f9095618 100644 --- a/mcpp.toml +++ b/mcpp.toml @@ -1,6 +1,6 @@ [package] name = "mcpp" -version = "2026.8.18.3" +version = "2026.8.19.1" description = "Modern C++ build & package management tool" license = "Apache-2.0" authors = ["mcpp-community"] diff --git a/src/version.cppm b/src/version.cppm index afcca825..cbdd92fb 100644 --- a/src/version.cppm +++ b/src/version.cppm @@ -31,6 +31,6 @@ import std; export namespace mcpp { -inline constexpr std::string_view MCPP_VERSION = "2026.8.18.3"; +inline constexpr std::string_view MCPP_VERSION = "2026.8.19.1"; } // namespace mcpp