diff --git a/build/common.targets b/build/common.targets index c5bce533d..b894b315d 100644 --- a/build/common.targets +++ b/build/common.targets @@ -7,7 +7,7 @@ repo. It imports the other MSBuild files as needed. - 4.1.2 + 4.1.3 SMAPI latest $(AssemblySearchPaths);{GAC} diff --git a/docs/release-notes.md b/docs/release-notes.md index 04124e613..d1cd05abc 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,7 +1,9 @@ ← [README](README.md) # Release notes -## Upcoming release +## 4.1.3 +Released 04 November 2024 for Stardew Valley 1.6.10 or later. + * Improved compatibility rewriters for Stardew Valley 1.6.9+. ## 4.1.2 diff --git a/docs/technical/mod-package-release-notes.md b/docs/technical/mod-package-release-notes.md index db5a411eb..bb82ffdcd 100644 --- a/docs/technical/mod-package-release-notes.md +++ b/docs/technical/mod-package-release-notes.md @@ -1,7 +1,9 @@ ← [mod build config](./mod-build-config.md) ## Release notes -## Upcoming release +## 4.3.1 +Released 04 November 2024 for SMAPI 4.1.0 or later. + * Removed build warnings for implicit net field conversions, which were removed in Stardew Valley 1.6.9. * Fixed zip structure on Linux/macOS after 4.3.0. diff --git a/src/SMAPI.ModBuildConfig/SMAPI.ModBuildConfig.csproj b/src/SMAPI.ModBuildConfig/SMAPI.ModBuildConfig.csproj index 65b1bbc36..c7c6a2fe9 100644 --- a/src/SMAPI.ModBuildConfig/SMAPI.ModBuildConfig.csproj +++ b/src/SMAPI.ModBuildConfig/SMAPI.ModBuildConfig.csproj @@ -10,7 +10,7 @@ Pathoschild.Stardew.ModBuildConfig Build package for SMAPI mods - 4.3.0 + 4.3.1 Pathoschild Automates the build configuration for crossplatform Stardew Valley SMAPI mods. For SMAPI 3.13.0 or later. mod-package.md diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json index e1446c339..7bfce26f6 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": "4.1.2", + "Version": "4.1.3", "Description": "Adds SMAPI console commands that let you manipulate the game.", "UniqueID": "SMAPI.ConsoleCommands", "EntryDll": "ConsoleCommands.dll", - "MinimumApiVersion": "4.1.2" + "MinimumApiVersion": "4.1.3" } diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json index 146aec76b..24abc4354 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": "4.1.2", + "Version": "4.1.3", "Description": "Automatically backs up all your saves once per day into its folder.", "UniqueID": "SMAPI.SaveBackup", "EntryDll": "SaveBackup.dll", - "MinimumApiVersion": "4.1.2" + "MinimumApiVersion": "4.1.3" } diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 397a1a38b..29fd12cf6 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -49,7 +49,7 @@ internal static class EarlyConstants internal static int? LogScreenId { get; set; } /// SMAPI's current raw semantic version. - internal static string RawApiVersion = "4.1.2"; + internal static string RawApiVersion = "4.1.3"; } /// Contains SMAPI's constants and assumptions.