summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-06-19 23:50:31 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-06-19 23:50:31 -0400
commit94a1308eb4bb76ad1dad73978b870cc51abacdc3 (patch)
tree62e0e0e6b7166688a8fa08514ba363dcb13d81b0 /src
parent08e9c7e7d36cbf0720c93b395e688aeb5c86b1dc (diff)
downloadSMAPI-94a1308eb4bb76ad1dad73978b870cc51abacdc3.tar.gz
SMAPI-94a1308eb4bb76ad1dad73978b870cc51abacdc3.tar.bz2
SMAPI-94a1308eb4bb76ad1dad73978b870cc51abacdc3.zip
bump versions for beta release
Diffstat (limited to 'src')
-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 c4bafbce..a08c3091 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.16",
+ "Version": "2.6.0-beta.17",
"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 4d7589e6..fac55a0b 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.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"
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 532112ff..65ca7866 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -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);
}