bump versions for beta release

This commit is contained in:
Jesse Plamondon-Willard 2018-06-19 23:50:31 -04:00
parent 08e9c7e7d3
commit 94a1308eb4
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{
"Name": "Console Commands",
"Author": "SMAPI",
"Version": "2.6.0-beta.16",
"Version": "2.6.0-beta.17",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll"

View File

@ -1,7 +1,7 @@
{
"Name": "Save Backup",
"Author": "SMAPI",
"Version": "2.6.0-beta.16",
"Version": "2.6.0-beta.17",
"Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll"

View File

@ -116,8 +116,8 @@ namespace StardewModdingAPI
/// <summary>Initialise the static values.</summary>
static Constants()
{
Constants.ApiVersionForToolkit = new Toolkit.SemanticVersion("2.6-beta.16");
Constants.MinimumGameVersion = new GameVersion("1.3.17");
Constants.ApiVersionForToolkit = new Toolkit.SemanticVersion("2.6-beta.17");
Constants.MinimumGameVersion = new GameVersion("1.3.20");
Constants.ApiVersion = new SemanticVersion(Constants.ApiVersionForToolkit);
}