diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-11-21 14:08:04 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-11-21 14:08:04 -0500 |
commit | a0cb83ed406fc0447e8edf00e680585005480d23 (patch) | |
tree | efc2f877a6f41869a40b6d0a320e6d5c4fd591ca | |
parent | cfdf783c2dfe659ff4bc656f720ddbf5c16c871a (diff) | |
download | SMAPI-a0cb83ed406fc0447e8edf00e680585005480d23.tar.gz SMAPI-a0cb83ed406fc0447e8edf00e680585005480d23.tar.bz2 SMAPI-a0cb83ed406fc0447e8edf00e680585005480d23.zip |
prepare for release
-rw-r--r-- | build/common.targets | 2 | ||||
-rw-r--r-- | docs/release-notes.md | 10 | ||||
-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 |
5 files changed, 12 insertions, 10 deletions
diff --git a/build/common.targets b/build/common.targets index 8e687190..d8b29488 100644 --- a/build/common.targets +++ b/build/common.targets @@ -4,7 +4,7 @@ <!--set properties --> <PropertyGroup> - <Version>3.7.5</Version> + <Version>3.7.6</Version> <Product>SMAPI</Product> <LangVersion>latest</LangVersion> diff --git a/docs/release-notes.md b/docs/release-notes.md index ac2dcce4..1115f482 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -7,13 +7,15 @@ * 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.6 +Released 21 November 2020 for Stardew Valley 1.4.1 or later. + * For players: - * Fixed error when heuristically rewriting a mod in rare cases (i.e. when it accesses a property for a type that no longer exists). - * Fixed rare 'collection was modified' error when using `harmony summary` console command in rare cases. + * Fixed error when heuristically rewriting an outdated mod in rare cases. + * Fixed rare 'collection was modified' error when using `harmony summary` console command. * For modders: - * Updated TMXTile 1.5.6 → 1.5.8 to fix exported `.tmx` files losing tile index properties. + * Updated TMXTile to 1.5.8 to fix exported `.tmx` files losing tile index properties. * For the Console Commands mod: * `player_add` can now spawn shirts normally only available during character customization. diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json index 300350e4..ddc55a73 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.5", + "Version": "3.7.6", "Description": "Adds SMAPI console commands that let you manipulate the game.", "UniqueID": "SMAPI.ConsoleCommands", "EntryDll": "ConsoleCommands.dll", - "MinimumApiVersion": "3.7.5" + "MinimumApiVersion": "3.7.6" } diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json index d1d8ae32..0fe98909 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.5", + "Version": "3.7.6", "Description": "Automatically backs up all your saves once per day into its folder.", "UniqueID": "SMAPI.SaveBackup", "EntryDll": "SaveBackup.dll", - "MinimumApiVersion": "3.7.5" + "MinimumApiVersion": "3.7.6" } diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 754ab295..88f79811 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.5"); + public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.7.6"); /// <summary>The minimum supported version of Stardew Valley.</summary> public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.1"); |