build: update version to 1.4.2

Update client version from 1.4.1 to 1.4.2 across configuration files, source code, and documentation
This commit is contained in:
2025-11-13 15:58:01 +01:00
parent 553424d19d
commit 9f156ae1ad
8 changed files with 19 additions and 19 deletions

View File

@@ -81,8 +81,8 @@ std::string FormatFullVersion()
{
// Display a simplified semantic version: omit trailing ".0" and git suffix
// by reusing FormatVersion on the aggregated CLIENT_VERSION.
// This yields e.g. "v1.4.1" when CLIENT_VERSION_BUILD == 0,
// or "v1.4.1.1" if a non-zero build number is used.
// This yields e.g. "v1.4.2" when CLIENT_VERSION_BUILD == 0,
// or "v1.4.2.1" if a non-zero build number is used.
return std::string("v") + FormatVersion(CLIENT_VERSION);
}