summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-08-31 17:15:58 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-08-31 17:15:58 -0400
commit41e95642f004b2bf96b8855a276454260cb5ed0e (patch)
tree239b69b967968508260c0bb1a3b59910c85c4f1e /src
parent5af87fc3be989c092dfcc9f328aa8bf3e7d48664 (diff)
downloadSMAPI-41e95642f004b2bf96b8855a276454260cb5ed0e.tar.gz
SMAPI-41e95642f004b2bf96b8855a276454260cb5ed0e.tar.bz2
SMAPI-41e95642f004b2bf96b8855a276454260cb5ed0e.zip
prepare for release
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI.Mods.ConsoleCommands/manifest.json4
-rw-r--r--src/SMAPI.Mods.ErrorHandler/manifest.json4
-rw-r--r--src/SMAPI.Mods.SaveBackup/manifest.json4
-rw-r--r--src/SMAPI/Constants.cs2
4 files changed, 7 insertions, 7 deletions
diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json
index f3dc8aef..abe8b334 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": "3.16.1",
+ "Version": "3.16.2",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll",
- "MinimumApiVersion": "3.16.1"
+ "MinimumApiVersion": "3.16.2"
}
diff --git a/src/SMAPI.Mods.ErrorHandler/manifest.json b/src/SMAPI.Mods.ErrorHandler/manifest.json
index cbcf0f82..b6764bc0 100644
--- a/src/SMAPI.Mods.ErrorHandler/manifest.json
+++ b/src/SMAPI.Mods.ErrorHandler/manifest.json
@@ -1,9 +1,9 @@
{
"Name": "Error Handler",
"Author": "SMAPI",
- "Version": "3.16.1",
+ "Version": "3.16.2",
"Description": "Handles some common vanilla errors to log more useful info or avoid breaking the game.",
"UniqueID": "SMAPI.ErrorHandler",
"EntryDll": "ErrorHandler.dll",
- "MinimumApiVersion": "3.16.1"
+ "MinimumApiVersion": "3.16.2"
}
diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json
index 5aa092ef..a2657168 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": "3.16.1",
+ "Version": "3.16.2",
"Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll",
- "MinimumApiVersion": "3.16.1"
+ "MinimumApiVersion": "3.16.2"
}
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 14aaf166..493aebd9 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -52,7 +52,7 @@ namespace StardewModdingAPI
internal static int? LogScreenId { get; set; }
/// <summary>SMAPI's current raw semantic version.</summary>
- internal static string RawApiVersion = "3.16.1";
+ internal static string RawApiVersion = "3.16.2";
}
/// <summary>Contains SMAPI's constants and assumptions.</summary>