From 141b959f7a26e7db8ea98deb26cb8d4a2d250343 Mon Sep 17 00:00:00 2001 From: Bhagirath Mehta Date: Thu, 24 Sep 2026 12:27:35 -0500 Subject: [PATCH] Regenerates `lib/include/public/Version.hpp` to the next date-derived release version **3.10.267.1** (`3.<(year-2020)+4>..1`), produced by `tools/gen-version.cmd`. Only the generated version header changes: ```diff -#define BUILD_VERSION_STR "3.10.240.1" +#define BUILD_VERSION_STR "3.10.267.1" ``` Standard release-prep PR (same shape as #1527). After this merges to `main`, publish the `v3.10.267.1` tag as a non-draft, non-prerelease GitHub Release. That release event triggers the automated `cpp-client-telemetry` vcpkg port bump workflow. --- lib/include/public/Version.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/include/public/Version.hpp b/lib/include/public/Version.hpp index e01607e4b..b1c03e4a5 100644 --- a/lib/include/public/Version.hpp +++ b/lib/include/public/Version.hpp @@ -6,8 +6,8 @@ #define MAT_VERSION_HPP // WARNING: DO NOT MODIFY THIS FILE! // This file has been automatically generated, manual changes will be lost. -#define BUILD_VERSION_STR "3.10.240.1" -#define BUILD_VERSION 3,10,240,1 +#define BUILD_VERSION_STR "3.10.267.1" +#define BUILD_VERSION 3,10,267,1 #ifndef RESOURCE_COMPILER_INVOKED #include "ctmacros.hpp" @@ -18,7 +18,7 @@ namespace MAT_NS_BEGIN { uint64_t const Version = ((uint64_t)3 << 48) | ((uint64_t)10 << 32) | - ((uint64_t)240 << 16) | + ((uint64_t)267 << 16) | ((uint64_t)1); } MAT_NS_END