Skip to content

Commit 7c1dc3b

Browse files
Spruill-1Copilot
andcommitted
Bump version to 1.6.2
Same shape as 1.6.1 -- EnsureExprTk.ps1 also has a Mandatory TargetDir parameter that Bootstrap.ps1 was failing to supply. Match the vcxproj invocation: $Repo\third_party\exprtk. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 55a8619 commit 7c1dc3b

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

Bootstrap.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ try {
3434

3535
# 2. ExprTk single-header download (Numeric Expression node).
3636
Write-Host "[2/4] Ensuring third_party/exprtk/exprtk.hpp..."
37-
& "$Repo\scripts\EnsureExprTk.ps1"
37+
& "$Repo\scripts\EnsureExprTk.ps1" -TargetDir "$Repo\third_party\exprtk"
3838

3939
# 3. NuGet restore (packages.config style).
4040
Write-Host "[3/4] Restoring NuGet packages..."

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Format follows [Keep a Changelog](https://keepachangelog.com/).
55

66
## [Unreleased]
77

8+
## [1.6.2] - 2026-05-08
9+
10+
### Fixed
11+
12+
- **CI Bootstrap.ps1 smoke job: missing `TargetDir` arg on `EnsureExprTk.ps1`.** Same shape as the 1.6.1 cert fix — `EnsureExprTk.ps1` declares `TargetDir` as a mandatory parameter; the vcxproj target supplies `$(ProjectDir)third_party\exprtk` but Bootstrap.ps1 was calling it bare. Now matches the vcxproj invocation.
13+
814
## [1.6.1] - 2026-05-08
915

1016
### Fixed

Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Identity
1010
Name="ShaderLab"
1111
Publisher="CN=ShaderLab"
12-
Version="1.6.1.0" />
12+
Version="1.6.2.0" />
1313

1414
<mp:PhoneIdentity PhoneProductId="a1b2c3d4-e5f6-7890-abcd-ef1234567890" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
1515

Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ namespace ShaderLab
1414
{
1515
constexpr uint32_t VersionMajor = 1;
1616
constexpr uint32_t VersionMinor = 6;
17-
constexpr uint32_t VersionPatch = 1;
17+
constexpr uint32_t VersionPatch = 2;
1818

1919
// Human-readable version string.
20-
constexpr const wchar_t* VersionString = L"1.6.1";
20+
constexpr const wchar_t* VersionString = L"1.6.2";
2121

2222
// Graph format version. Increment when serialization format changes.
2323
// Graphs saved with a higher format version cannot be loaded by older apps.

0 commit comments

Comments
 (0)