From 3104e76d21948bd2521f57ce8c0285e3161c7593 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sat, 21 Feb 2015 15:26:00 -0700 Subject: [PATCH] Version tick: 4.2.5 Changed versioning system to remove the date from the version string. Fixes #836 --- TShockAPI/Properties/AssemblyInfo.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) mode change 100644 => 100755 TShockAPI/Properties/AssemblyInfo.cs diff --git a/TShockAPI/Properties/AssemblyInfo.cs b/TShockAPI/Properties/AssemblyInfo.cs old mode 100644 new mode 100755 index 1ace0f53..61a58e2a --- a/TShockAPI/Properties/AssemblyInfo.cs +++ b/TShockAPI/Properties/AssemblyInfo.cs @@ -47,7 +47,11 @@ using System.Runtime.InteropServices; // Major Version // Minor Version // Build Number -// MMdd of the build +// Starting in version 4.2.5, we are no longer including the fourth decimal +// location, which previously held the date and time. -[assembly: AssemblyVersion("4.2.4.0128")] -[assembly: AssemblyFileVersion("4.2.4.0128")] +// Also, be sure to release on github with the exact assembly version tag as below +// so that the update manager works correctly (via the Github releases api and mimic) + +[assembly: AssemblyVersion("4.2.5")] +[assembly: AssemblyFileVersion("4.2.5")]