Version tick: 4.2.5

Changed versioning system to remove the date from the version
string.

Fixes #836
This commit is contained in:
Lucas Nicodemus 2015-02-21 15:26:00 -07:00
parent e93d4c9741
commit 3104e76d21

10
TShockAPI/Properties/AssemblyInfo.cs Normal file → Executable file
View file

@ -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")]