summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-10-03 20:27:29 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-10-03 20:27:29 -0400
commit68e9733a856b41c2b74d5c35a4b812e68157fbca (patch)
tree7c130a6a2b137ec08297ce7a13ebd8142323320c
parentd8f5e0bdf2da76677636e3e60979bb54da6339a7 (diff)
downloadSMAPI-68e9733a856b41c2b74d5c35a4b812e68157fbca.tar.gz
SMAPI-68e9733a856b41c2b74d5c35a4b812e68157fbca.tar.bz2
SMAPI-68e9733a856b41c2b74d5c35a4b812e68157fbca.zip
prepare for release
-rw-r--r--build/common.targets2
-rw-r--r--docs/release-notes.md4
-rw-r--r--src/SMAPI.Mods.ConsoleCommands/manifest.json4
-rw-r--r--src/SMAPI.Mods.SaveBackup/manifest.json4
-rw-r--r--src/SMAPI/Constants.cs2
5 files changed, 9 insertions, 7 deletions
diff --git a/build/common.targets b/build/common.targets
index 7c2c5cad..171279a5 100644
--- a/build/common.targets
+++ b/build/common.targets
@@ -4,7 +4,7 @@
<!--set properties -->
<PropertyGroup>
- <Version>3.7.3</Version>
+ <Version>3.7.4</Version>
<Product>SMAPI</Product>
<LangVersion>latest</LangVersion>
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 94080959..16afd637 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -7,7 +7,9 @@
* Migrated to Harmony 2.0 (see [_migrate to Harmony 2.0_](https://stardewvalleywiki.com/Modding:Migrate_to_Harmony_2.0) for more info).
-->
-## Upcoming release
+## 3.7.4
+Released 03 October 2020 for Stardew Valley 1.4.1 or later.
+
* For players:
* Improved performance on some older computers (thanks to millerscout!).
* Fixed update alerts for Chucklefish forum mods broken by a recent site change.
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");