From b3b1b143baf99673f42b65ef7d84e4135bfc6d48 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 30 Dec 2018 16:56:35 -0500 Subject: fix GameLaunched raised twice due to Game1.ticks not incrementing reliably --- docs/release-notes.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs') diff --git a/docs/release-notes.md b/docs/release-notes.md index 2fd4b42c..a4a9a784 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,4 +1,8 @@ # Release notes +## Upcoming release +* For players: + * Fixed issue in SMAPI 2.10 which broke some mod integrations. + ## 2.10 Released 29 December 2018 for Stardew Valley 1.3.32. -- cgit From 72888fe2edf165580130fb37efdb562c8e3f78bb Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 30 Dec 2018 17:02:56 -0500 Subject: update for release --- build/GlobalAssemblyInfo.cs | 4 ++-- docs/release-notes.md | 6 ++++-- src/SMAPI.Mods.ConsoleCommands/manifest.json | 4 ++-- src/SMAPI.Mods.SaveBackup/manifest.json | 4 ++-- src/SMAPI/Constants.cs | 2 +- 5 files changed, 11 insertions(+), 9 deletions(-) (limited to 'docs') diff --git a/build/GlobalAssemblyInfo.cs b/build/GlobalAssemblyInfo.cs index 298204dc..da80f48b 100644 --- a/build/GlobalAssemblyInfo.cs +++ b/build/GlobalAssemblyInfo.cs @@ -1,5 +1,5 @@ using System.Reflection; [assembly: AssemblyProduct("SMAPI")] -[assembly: AssemblyVersion("2.10.0")] -[assembly: AssemblyFileVersion("2.10.0")] +[assembly: AssemblyVersion("2.10.1")] +[assembly: AssemblyFileVersion("2.10.1")] diff --git a/docs/release-notes.md b/docs/release-notes.md index a4a9a784..e08e7af4 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,7 +1,9 @@ # Release notes -## Upcoming release +## 2.10.1 +Released 30 December 2018 for Stardew Valley 1.3.32. + * For players: - * Fixed issue in SMAPI 2.10 which broke some mod integrations. + * Fixed some mod integrations not working correctly in SMAPI 2.10. ## 2.10 Released 29 December 2018 for Stardew Valley 1.3.32. diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json index 3e7001d5..0341c390 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": "2.10.0", + "Version": "2.10.1", "Description": "Adds SMAPI console commands that let you manipulate the game.", "UniqueID": "SMAPI.ConsoleCommands", "EntryDll": "ConsoleCommands.dll", - "MinimumApiVersion": "2.10.0" + "MinimumApiVersion": "2.10.1" } diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json index 0e2601ad..b2b9ad4b 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": "2.10.0", + "Version": "2.10.1", "Description": "Automatically backs up all your saves once per day into its folder.", "UniqueID": "SMAPI.SaveBackup", "EntryDll": "SaveBackup.dll", - "MinimumApiVersion": "2.10.0" + "MinimumApiVersion": "2.10.1" } diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 9ceaf11d..a0ba67ab 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -29,7 +29,7 @@ namespace StardewModdingAPI ** Public ****/ /// SMAPI's current semantic version. - public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.10.0"); + public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.10.1"); /// The minimum supported version of Stardew Valley. public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.32"); -- cgit