Skip to content

Commit 59de820

Browse files
authored
Set the package version to 1.3.2 (#48)
* Set the package version to 1.3.2 The 1.3.2 tag workflow stopped at the release-version gate because the tagged commit still declared version 1.3.1, leaving the published release without installers. Align package and lockfile metadata with the intended tag and document the GitHub-safe Windows installer fix in the changelog. Verified with 61 unit/component tests, lint, Prettier, the release-contract check, and the 1.3.2 release-tag check. * Update the smoke test for version 1.3.2 Keep the packaged-renderer version assertion aligned with the release metadata so the Electron quality gate validates the intended 1.3.2 build. Verified by building the application and passing the targeted Electron smoke test.
1 parent f57b6be commit 59de820

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.3.2] - 11-08-2026
8+
9+
- Use a GitHub-safe Windows installer filename so the automatic updater can
10+
discover and verify the release asset.
11+
712
## [1.3.1] - 11-08-2026
813

914
- Separate formatted telemetry values from their unit labels for clearer status

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cats-configurator",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "Desktop configuration and flight-log analysis utility for CATS flight computers.",
55
"author": "CATS Systems",
66
"private": true,

tests/e2e/electron.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ test("launches the packaged renderer and exercises the secure bridge", async ({}
7171
});
7272
await expect(page).toHaveTitle("CATS Configurator");
7373
await expect(page.getByText("Status: Disconnected")).toBeVisible();
74-
await expect(page.getByText("App version: 1.3.1")).toBeVisible();
74+
await expect(page.getByText("App version: 1.3.2")).toBeVisible();
7575
await expect(page.getByText("CATS", { exact: true })).toBeVisible();
7676
await expect(page.getByText("Configurator", { exact: true })).toBeVisible();
7777
await expect(

0 commit comments

Comments
 (0)