Skip to content

Commit c4f3192

Browse files
committed
Prepare v1.4.1 release
1 parent 7953fc7 commit c4f3192

16 files changed

Lines changed: 56 additions & 60 deletions

Installer/Installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#define MyAppPublisher "ThreadPilot"
66
#define MyAppURL "https://github.com/"
77
#define MyAppExeName "ThreadPilot.exe"
8-
#define MyAppVersion "1.4.0"
8+
#define MyAppVersion "1.4.1"
99

1010
#ifndef MyWizardStyle
1111
#define MyWizardStyle "modern dynamic windows11"

Installer/ThreadPilot.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Package
88
Name="ThreadPilot"
99
Manufacturer="Prime Build"
10-
Version="1.4.0.0"
10+
Version="1.4.1.0"
1111
UpgradeCode="PUT-GENERATED-UPGRADE-CODE-HERE"
1212
Language="1033">
1313
<SummaryInformation Description="ThreadPilot MSI template" />

Installer/setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#endif
1212

1313
#ifndef MyAppVersion
14-
#define MyAppVersion "1.4.0"
14+
#define MyAppVersion "1.4.1"
1515
#endif
1616

1717
#ifndef MyAppSourceDir

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,10 @@ Build release artifacts with the project script:
170170
- [`docs/CODE_OF_CONDUCT.md`](docs/CODE_OF_CONDUCT.md)
171171
- [`docs/RELEASE_SIGNING.md`](docs/RELEASE_SIGNING.md)
172172
- [`docs/release/PACKAGING.md`](docs/release/PACKAGING.md)
173-
- [`docs/reference/ARCHITECTURE_GUIDE.md`](docs/reference/ARCHITECTURE_GUIDE.md)
174-
- [`docs/reference/DEVELOPER_GUIDE.md`](docs/reference/DEVELOPER_GUIDE.md)
175-
- [`docs/reference/API_REFERENCE.md`](docs/reference/API_REFERENCE.md)
176-
- [`docs/reference/PROJECT_STRUCTURE.md`](docs/reference/PROJECT_STRUCTURE.md)
177-
- [`docs/reference/UI_STYLE_GUIDE.md`](docs/reference/UI_STYLE_GUIDE.md)
173+
- [`docs/TROUBLESHOOTING.md`](docs/TROUBLESHOOTING.md)
174+
- [`docs/QUALITY_GATES.md`](docs/QUALITY_GATES.md)
175+
- [`docs/adr/`](docs/adr/)
176+
- [`docs/releases/`](docs/releases/)
178177

179178
## 🗺️ Roadmap
180179

Tests/ThreadPilot.Core.Tests/PackagingMetadataTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ namespace ThreadPilot.Core.Tests
44

55
public sealed partial class PackagingMetadataTests
66
{
7-
private const string ReleaseVersion = "1.4.0";
8-
private const string ReleaseAssemblyVersion = "1.4.0.0";
7+
private const string ReleaseVersion = "1.4.1";
8+
private const string ReleaseAssemblyVersion = "1.4.1.0";
99

1010
[Fact]
1111
public void InnoInstallers_UseStableDisplayNameAndSeparateVersionMetadata()
@@ -100,7 +100,7 @@ private static string FindRepositoryRoot()
100100
throw new InvalidOperationException("Repository root could not be located.");
101101
}
102102

103-
[GeneratedRegex("#define MyAppVersion \"1\\.4\\.0\"", RegexOptions.CultureInvariant)]
103+
[GeneratedRegex("#define MyAppVersion \"1\\.4\\.1\"", RegexOptions.CultureInvariant)]
104104
private static partial Regex MyAppVersionRegex();
105105
}
106106
}

ThreadPilot.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
<TrimMode>link</TrimMode>
1717
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1818
<NoWarn>CS1998;CS0067;CS0414;WFAC010;IL3000;MVVMTK0034</NoWarn>
19-
<Version>1.4.0</Version>
20-
<AssemblyVersion>1.4.0.0</AssemblyVersion>
21-
<FileVersion>1.4.0.0</FileVersion>
22-
<InformationalVersion>1.4.0</InformationalVersion>
19+
<Version>1.4.1</Version>
20+
<AssemblyVersion>1.4.1.0</AssemblyVersion>
21+
<FileVersion>1.4.1.0</FileVersion>
22+
<InformationalVersion>1.4.1</InformationalVersion>
2323
</PropertyGroup>
2424

2525
<ItemGroup>

app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="1.4.0.0" name="ThreadPilot.app"/>
3+
<assemblyIdentity version="1.4.1.0" name="ThreadPilot.app"/>
44
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
55
<security>
66
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">

build/build-installer.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
param(
2-
[string]$Version = "1.4.0",
2+
[string]$Version = "1.4.1",
33
[string]$Configuration = "Release",
44
[switch]$SkipPublish
55
)

build/build-release.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
param(
2-
[string]$Version = "1.4.0",
2+
[string]$Version = "1.4.1",
33
[string]$Configuration = "Release",
44
[string]$Runtime = "win-x64"
55
)

build/package-release-zips.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
param(
2-
[string]$Version = "1.4.0"
2+
[string]$Version = "1.4.1"
33
)
44

55
$ErrorActionPreference = "Stop"

0 commit comments

Comments
 (0)