From f492d173110373d01d9b6592592f349074eb19c9 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Wed, 18 Dec 2024 22:20:30 -0500 Subject: [PATCH] prepare for release --- build/common.targets | 2 +- docs/release-notes.md | 16 +++++++++++++--- src/SMAPI.Mods.ConsoleCommands/manifest.json | 4 ++-- src/SMAPI.Mods.SaveBackup/manifest.json | 4 ++-- src/SMAPI/Constants.cs | 2 +- 5 files changed, 19 insertions(+), 9 deletions(-) diff --git a/build/common.targets b/build/common.targets index 4e16194cb..e450c77e0 100644 --- a/build/common.targets +++ b/build/common.targets @@ -7,7 +7,7 @@ repo. It imports the other MSBuild files as needed. - 4.1.9 + 4.1.10 SMAPI latest $(AssemblySearchPaths);{GAC} diff --git a/docs/release-notes.md b/docs/release-notes.md index 66c3b9a93..f1a530b80 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,14 +1,24 @@ ← [README](README.md) # Release notes -## Upcoming release +## 4.1.10 +Released 18 December 2024 for Stardew Valley 1.6.14 or later. + * For players: - * Updated for Stardew Valley 1.6.15. - * Fixed mod communication errors when cross-playing between PC and Android. + * Updated for the upcoming Stardew Valley 1.6.15. + * Fixed errors when cross-playing between PC and Android. * For mod authors: * Improved [Content Patcher JSON schema](technical/web.md#using-a-schema-file-directly) to allow boolean and numeric values in dynamic tokens. + +> [!IMPORTANT] +> **For players on macOS:** +> There are recent security changes in macOS. Make sure to follow the updated [install guide for +> macOS](https://stardewvalleywiki.com/Modding:Installing_SMAPI_on_Mac) when installing or updating SMAPI. +> +> Players on Linux or Windows can ignore this. + # 4.1.9 Released 08 December 2024 for Stardew Valley 1.6.14 or later. diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json index 8b3acc33a..958a1440f 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.9", + "Version": "4.1.10", "Description": "Adds SMAPI console commands that let you manipulate the game.", "UniqueID": "SMAPI.ConsoleCommands", "EntryDll": "ConsoleCommands.dll", - "MinimumApiVersion": "4.1.9" + "MinimumApiVersion": "4.1.10" } diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json index 4f815aaa9..a383a1610 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.9", + "Version": "4.1.10", "Description": "Automatically backs up all your saves once per day into its folder.", "UniqueID": "SMAPI.SaveBackup", "EntryDll": "SaveBackup.dll", - "MinimumApiVersion": "4.1.9" + "MinimumApiVersion": "4.1.10" } diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 7771f5163..da9c4bcaf 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.9"; + internal static string RawApiVersion = "4.1.10"; } /// Contains SMAPI's constants and assumptions.