diff --git a/Installer.iss b/Installer.iss index 7ba162cc5e..8d2fdbfbb1 100644 --- a/Installer.iss +++ b/Installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "EDDI" -#define MyAppVersion "3.3.7-rc1" +#define MyAppVersion "3.3.7" #define MyAppPublisher "Elite Dangerous Community Developers (EDCD)" #define MyAppURL "https://github.com/EDCD/EDDI/" #define MyAppExeName "EDDI.exe" diff --git a/Utilities/Constants.cs b/Utilities/Constants.cs index 7974669a3d..8927bc8075 100644 --- a/Utilities/Constants.cs +++ b/Utilities/Constants.cs @@ -9,7 +9,7 @@ public class Constants { public const string EDDI_NAME = "EDDI"; public const string EDDI_URL_PROTOCOL = "eddi"; - public static Version EDDI_VERSION = new Version(3, 3, 7, Version.TestPhase.rc, 1); + public static Version EDDI_VERSION = new Version(3, 3, 7, Version.TestPhase.final, 0); public const string EDDI_SERVER_URL = "http://edcd.github.io/EDDP/"; public static readonly string EDDI_SYSTEM_MUTEX_NAME = $"{EDDI_SERVER_URL}/{EDDI_NAME}/{Environment.GetEnvironmentVariable("UserName")}";