summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-08-23 23:01:54 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-08-23 23:01:54 -0400
commit58122c539325ee4471e1baf936622da0f45c9c82 (patch)
treed8f787e7ccb02727cf10c02bb4c5095eb1ef2f6e /src
parent6ef7de33e8251f5d836a8ed2936939d9ce2fadb4 (diff)
downloadSMAPI-58122c539325ee4471e1baf936622da0f45c9c82.tar.gz
SMAPI-58122c539325ee4471e1baf936622da0f45c9c82.tar.bz2
SMAPI-58122c539325ee4471e1baf936622da0f45c9c82.zip
bump versions for beta
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 a6c5cd88..7d017b52 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.7.0",
+ "Version": "2.8.0-beta.1",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll",
- "MinimumApiVersion": "2.7.0"
+ "MinimumApiVersion": "2.8.0-beta.1"
}
diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json
index e973b449..ff88037a 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.7.0",
+ "Version": "2.8.0-beta.1",
"Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll",
- "MinimumApiVersion": "2.7.0"
+ "MinimumApiVersion": "2.8.0-beta.1"
}
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 0e0ae239..9c93c696 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.7.0");
+ public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.8.0-beta.1");
/// <summary>The minimum supported version of Stardew Valley.</summary>
- public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.28");
+ public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.29");
/// <summary>The maximum supported version of Stardew Valley.</summary>
public static ISemanticVersion MaximumGameVersion { get; } = null;