diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-10-03 20:27:29 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-10-03 20:27:29 -0400 |
commit | 68e9733a856b41c2b74d5c35a4b812e68157fbca (patch) | |
tree | 7c130a6a2b137ec08297ce7a13ebd8142323320c /src | |
parent | d8f5e0bdf2da76677636e3e60979bb54da6339a7 (diff) | |
download | SMAPI-68e9733a856b41c2b74d5c35a4b812e68157fbca.tar.gz SMAPI-68e9733a856b41c2b74d5c35a4b812e68157fbca.tar.bz2 SMAPI-68e9733a856b41c2b74d5c35a4b812e68157fbca.zip |
prepare for release
Diffstat (limited to 'src')
-rw-r--r-- | src/SMAPI.Mods.ConsoleCommands/manifest.json | 4 | ||||
-rw-r--r-- | src/SMAPI.Mods.SaveBackup/manifest.json | 4 | ||||
-rw-r--r-- | src/SMAPI/Constants.cs | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json index e4506431..a8499ce2 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.7.3", + "Version": "3.7.4", "Description": "Adds SMAPI console commands that let you manipulate the game.", "UniqueID": "SMAPI.ConsoleCommands", "EntryDll": "ConsoleCommands.dll", - "MinimumApiVersion": "3.7.3" + "MinimumApiVersion": "3.7.4" } diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json index 34f553ba..ed0d94a9 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.7.3", + "Version": "3.7.4", "Description": "Automatically backs up all your saves once per day into its folder.", "UniqueID": "SMAPI.SaveBackup", "EntryDll": "SaveBackup.dll", - "MinimumApiVersion": "3.7.3" + "MinimumApiVersion": "3.7.4" } diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 48428420..3927d477 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -51,7 +51,7 @@ namespace StardewModdingAPI ** Public ****/ /// <summary>SMAPI's current semantic version.</summary> - public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.7.3"); + public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.7.4"); /// <summary>The minimum supported version of Stardew Valley.</summary> public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.1"); |