bump version for release
This commit is contained in:
parent
845d38169c
commit
5de81464ce
|
@ -1,5 +1,5 @@
|
|||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyProduct("SMAPI")]
|
||||
[assembly: AssemblyVersion("2.8.1")]
|
||||
[assembly: AssemblyFileVersion("2.8.1")]
|
||||
[assembly: AssemblyVersion("2.8.2")]
|
||||
[assembly: AssemblyFileVersion("2.8.2")]
|
||||
|
|
|
@ -5,5 +5,5 @@
|
|||
"Description": "Adds SMAPI console commands that let you manipulate the game.",
|
||||
"UniqueID": "SMAPI.ConsoleCommands",
|
||||
"EntryDll": "ConsoleCommands.dll",
|
||||
"MinimumApiVersion": "2.8.1"
|
||||
"MinimumApiVersion": "2.8.2"
|
||||
}
|
||||
|
|
|
@ -5,5 +5,5 @@
|
|||
"Description": "Automatically backs up all your saves once per day into its folder.",
|
||||
"UniqueID": "SMAPI.SaveBackup",
|
||||
"EntryDll": "SaveBackup.dll",
|
||||
"MinimumApiVersion": "2.8.1"
|
||||
"MinimumApiVersion": "2.8.2"
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ namespace StardewModdingAPI
|
|||
** Public
|
||||
****/
|
||||
/// <summary>SMAPI's current semantic version.</summary>
|
||||
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.8.1");
|
||||
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.8.2");
|
||||
|
||||
/// <summary>The minimum supported version of Stardew Valley.</summary>
|
||||
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.32");
|
||||
|
|
Loading…
Reference in New Issue