Skip to content

Commit 30da7cf

Browse files
committed
update version
1 parent 9c26fe1 commit 30da7cf

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

UniGetUI.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; Script generated by the Inno Setup Script Wizard.
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

4-
#define MyAppVersion "3.2.0-beta4"
4+
#define MyAppVersion "3.2.0"
55
#define MyAppName "UniGetUI"
66
#define MyAppPublisher "Martí Climent"
77
#define MyAppURL "https://github.com/marticliment/UniGetUI"
@@ -14,7 +14,7 @@
1414
[Setup]
1515
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
1616
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
17-
UninstallDisplayName="UniGetUI (PreRelease)"
17+
UninstallDisplayName="UniGetUI"
1818
AppId={{889610CC-4337-4BDB-AC3B-4F21806C0BDE}
1919
AppName={#MyAppName}
2020
AppVersion={#MyAppVersion}

scripts/BuildNumber

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
89
1+
90

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
66
<!-- IF BUILD FAILS DUE TO MISSING Microsoft.Management.Deployment NAMESPACE,
77
TOGGLE THE LAST NUMBER OF THE LINE BELOW 1 UNIT UP OR DOWN, AND REBUILD-->
8-
<!--WindowsSdkPackageVersion>10.0.26100.57</WindowsSdkPackageVersion-->
8+
<WindowsSdkPackageVersion>10.0.26100.57</WindowsSdkPackageVersion>
99

1010
<SdkVersion>8.0.407</SdkVersion>
1111
<Authors>Martí Climent and the contributors</Authors>

src/SharedAssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
[assembly: AssemblyCopyright("2025, Martí Climent")]
99
[assembly: AssemblyVersion("3.2.0.0")]
1010
[assembly: AssemblyFileVersion("3.2.0.0")]
11-
[assembly: AssemblyInformationalVersion("3.2.0-beta4")]
11+
[assembly: AssemblyInformationalVersion("3.2.0")]
1212
[assembly: SupportedOSPlatform("windows10.0.19041")]

src/UniGetUI.Core.Data/CoreData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ public static class CoreData
99
{
1010
private static int? __code_page;
1111
public static int CODE_PAGE { get => __code_page ??= GetCodePage(); }
12-
public const string VersionName = "3.2.0-beta4"; // Do not modify this line, use file scripts/apply_versions.py
13-
public const int BuildNumber = 89; // Do not modify this line, use file scripts/apply_versions.py
12+
public const string VersionName = "3.2.0"; // Do not modify this line, use file scripts/apply_versions.py
13+
public const int BuildNumber = 90; // Do not modify this line, use file scripts/apply_versions.py
1414

1515
public const string UserAgentString = $"UniGetUI/{VersionName} (https://marticliment.com/unigetui/; contact@marticliment.com)";
1616

0 commit comments

Comments
 (0)