summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/SMAPI.Mods.ConsoleCommands/manifest.json2
-rw-r--r--src/SMAPI.Mods.SaveBackup/manifest.json2
-rw-r--r--src/SMAPI/Constants.cs4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json
index d75b42d5..c4bafbce 100644
--- a/src/SMAPI.Mods.ConsoleCommands/manifest.json
+++ b/src/SMAPI.Mods.ConsoleCommands/manifest.json
@@ -1,7 +1,7 @@
{
"Name": "Console Commands",
"Author": "SMAPI",
- "Version": "2.6.0-beta.15",
+ "Version": "2.6.0-beta.16",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll"
diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json
index d076d84f..4d7589e6 100644
--- a/src/SMAPI.Mods.SaveBackup/manifest.json
+++ b/src/SMAPI.Mods.SaveBackup/manifest.json
@@ -1,7 +1,7 @@
{
"Name": "Save Backup",
"Author": "SMAPI",
- "Version": "2.6.0-beta.15",
+ "Version": "2.6.0-beta.16",
"Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll"
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 867e01ea..31744ccd 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -113,8 +113,8 @@ namespace StardewModdingAPI
/// <summary>Initialise the static values.</summary>
static Constants()
{
- Constants.ApiVersionForToolkit = new Toolkit.SemanticVersion("2.6-beta.15");
- Constants.MinimumGameVersion = new GameVersion("1.3.13");
+ Constants.ApiVersionForToolkit = new Toolkit.SemanticVersion("2.6-beta.16");
+ Constants.MinimumGameVersion = new GameVersion("1.3.17");
Constants.ApiVersion = new SemanticVersion(Constants.ApiVersionForToolkit);
}