prepare for release

This commit is contained in:
Jesse Plamondon-Willard 2020-09-08 18:16:41 -04:00
parent 8a319e94c8
commit d53e033163
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
5 changed files with 9 additions and 7 deletions

View File

@ -4,7 +4,7 @@
<!--set properties -->
<PropertyGroup>
<Version>3.7.1</Version>
<Version>3.7.2</Version>
<Product>SMAPI</Product>
<LangVersion>latest</LangVersion>

View File

@ -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.2
Released 08 September 2020 for Stardew Valley 1.4.1 or later.
* For players:
* Fixed mod recipe changes not always applied in 3.7.

View File

@ -1,9 +1,9 @@
{
"Name": "Console Commands",
"Author": "SMAPI",
"Version": "3.7.1",
"Version": "3.7.2",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll",
"MinimumApiVersion": "3.7.1"
"MinimumApiVersion": "3.7.2"
}

View File

@ -1,9 +1,9 @@
{
"Name": "Save Backup",
"Author": "SMAPI",
"Version": "3.7.1",
"Version": "3.7.2",
"Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll",
"MinimumApiVersion": "3.7.1"
"MinimumApiVersion": "3.7.2"
}

View File

@ -51,7 +51,7 @@ namespace StardewModdingAPI
** Public
****/
/// <summary>SMAPI's current semantic version.</summary>
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.7.1");
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.7.2");
/// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.1");