Skip to content

Commit

Permalink
Release new version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-Roth committed Mar 5, 2023
1 parent 7059cd3 commit 610ad5f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MSI/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
-->

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension">
<Product Id="*" Name="FOG Service" Language="1033" Version="0.12.2" UpgradeCode="1CCFDEAF-53E9-43AC-AE18-F9F86CEFA4EA"
<Product Id="*" Name="FOG Service" Language="1033" Version="0.13.0" UpgradeCode="1CCFDEAF-53E9-43AC-AE18-F9F86CEFA4EA"
Manufacturer="FOG">
<Package Description="FOG Service" Comments="A client for the FOG project" InstallerVersion="300" Compressed="yes"
InstallScope="perMachine" />
<!-- Remove old versions -->
<Upgrade Id="1CCFDEAF-53E9-43AC-AE18-F9F86CEFA4EA">
<UpgradeVersion OnlyDetect="yes" Minimum="0.0.0" Property="NEWERVERSIONDETECTED" IncludeMinimum="no" />
<UpgradeVersion OnlyDetect="no" Minimum="0.0.0" Maximum="0.12.1" Property="OLDERVERSIONBEINGUPGRADED"
<UpgradeVersion OnlyDetect="no" Minimum="0.0.0" Maximum="0.12.2" Property="OLDERVERSIONBEINGUPGRADED"
IncludeMinimum="no" IncludeMaximum="yes" MigrateFeatures="yes" />
</Upgrade>
<InstallExecuteSequence>
Expand Down
2 changes: 1 addition & 1 deletion UniversalInstaller/Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace FOG
public static class Helper
{
private const string LogName = "Installer";
public const string ClientVersion = "0.12.2";
public const string ClientVersion = "0.13.0";

public static IInstall Instance { get; }

Expand Down
4 changes: 2 additions & 2 deletions UniversalInstaller/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.12.2")]
[assembly: AssemblyFileVersion("0.12.2")]
[assembly: AssemblyVersion("0.13.0")]
[assembly: AssemblyFileVersion("0.13.0")]

0 comments on commit 610ad5f

Please sign in to comment.