diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-08 19:18:21 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-08 19:18:21 -0400 |
commit | 30d6ff42531e5908034a54c856725fdd036abbad (patch) | |
tree | 5adeef014bf06beead0e37c50f798d8a31bf0aeb | |
parent | d09bdadfaa0895cb3262fc278d46facde9f87847 (diff) | |
download | SMAPI-30d6ff42531e5908034a54c856725fdd036abbad.tar.gz SMAPI-30d6ff42531e5908034a54c856725fdd036abbad.tar.bz2 SMAPI-30d6ff42531e5908034a54c856725fdd036abbad.zip |
update versions for beta release
-rw-r--r-- | src/SMAPI.Mods.ConsoleCommands/manifest.json | 2 | ||||
-rw-r--r-- | src/SMAPI.Mods.SaveBackup/manifest.json | 2 | ||||
-rw-r--r-- | src/SMAPI/Constants.cs | 4 |
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); } |