bump versions for re-release

This commit is contained in:
Jesse Plamondon-Willard 2018-11-19 13:37:55 -05:00
parent ad612da1a2
commit 3dc27a5681
No known key found for this signature in database
GPG Key ID: 7D7C8097B62033CE
4 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
using System.Reflection; using System.Reflection;
[assembly: AssemblyProduct("SMAPI")] [assembly: AssemblyProduct("SMAPI")]
[assembly: AssemblyVersion("2.8.0")] [assembly: AssemblyVersion("2.8.1")]
[assembly: AssemblyFileVersion("2.8.0")] [assembly: AssemblyFileVersion("2.8.1")]

View File

@ -5,5 +5,5 @@
"Description": "Adds SMAPI console commands that let you manipulate the game.", "Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands", "UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll", "EntryDll": "ConsoleCommands.dll",
"MinimumApiVersion": "2.8.0" "MinimumApiVersion": "2.8.1"
} }

View File

@ -5,5 +5,5 @@
"Description": "Automatically backs up all your saves once per day into its folder.", "Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup", "UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll", "EntryDll": "SaveBackup.dll",
"MinimumApiVersion": "2.8.0" "MinimumApiVersion": "2.8.1"
} }

View File

@ -29,7 +29,7 @@ namespace StardewModdingAPI
** Public ** Public
****/ ****/
/// <summary>SMAPI's current semantic version.</summary> /// <summary>SMAPI's current semantic version.</summary>
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.8.0"); public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.8.1");
/// <summary>The minimum supported version of Stardew Valley.</summary> /// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.32"); public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.32");