summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-10-11 18:34:23 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-10-11 18:34:23 -0400
commit896f98f2604f508cd94f2fcb0aa34cd914a042b5 (patch)
tree1805de3647dfac107b1a2b2e0a2be8e482eb92f6 /src
parent5a9c9360d445254ef8290fc0f5fd48117f07a2b0 (diff)
downloadSMAPI-896f98f2604f508cd94f2fcb0aa34cd914a042b5.tar.gz
SMAPI-896f98f2604f508cd94f2fcb0aa34cd914a042b5.tar.bz2
SMAPI-896f98f2604f508cd94f2fcb0aa34cd914a042b5.zip
update for beta release
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI.Mods.ConsoleCommands/manifest.json4
-rw-r--r--src/SMAPI.Mods.SaveBackup/manifest.json4
-rw-r--r--src/SMAPI/Constants.cs4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json
index c76da971..397bcf53 100644
--- a/src/SMAPI.Mods.ConsoleCommands/manifest.json
+++ b/src/SMAPI.Mods.ConsoleCommands/manifest.json
@@ -1,9 +1,9 @@
{
"Name": "Console Commands",
"Author": "SMAPI",
- "Version": "2.8.0-beta.4",
+ "Version": "2.8.0-beta.5",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll",
- "MinimumApiVersion": "2.8.0-beta.4"
+ "MinimumApiVersion": "2.8.0-beta.5"
}
diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json
index c749b859..6d13d8c8 100644
--- a/src/SMAPI.Mods.SaveBackup/manifest.json
+++ b/src/SMAPI.Mods.SaveBackup/manifest.json
@@ -1,9 +1,9 @@
{
"Name": "Save Backup",
"Author": "SMAPI",
- "Version": "2.8.0-beta.4",
+ "Version": "2.8.0-beta.5",
"Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll",
- "MinimumApiVersion": "2.8.0-beta.4"
+ "MinimumApiVersion": "2.8.0-beta.5"
}
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 1f4e2f1c..1a20ac68 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -29,10 +29,10 @@ namespace StardewModdingAPI
** Public
****/
/// <summary>SMAPI's current semantic version.</summary>
- public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.8.0-beta.4");
+ public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.8.0-beta.5");
/// <summary>The minimum supported version of Stardew Valley.</summary>
- public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.29");
+ public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.31");
/// <summary>The maximum supported version of Stardew Valley.</summary>
public static ISemanticVersion MaximumGameVersion { get; } = null;