diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-12-30 17:02:56 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-12-30 17:02:56 -0500 |
commit | 72888fe2edf165580130fb37efdb562c8e3f78bb (patch) | |
tree | 5a146e05975f1f4b40d2e1897d314f02b6d033c2 | |
parent | b3b1b143baf99673f42b65ef7d84e4135bfc6d48 (diff) | |
download | SMAPI-72888fe2edf165580130fb37efdb562c8e3f78bb.tar.gz SMAPI-72888fe2edf165580130fb37efdb562c8e3f78bb.tar.bz2 SMAPI-72888fe2edf165580130fb37efdb562c8e3f78bb.zip |
update for release
-rw-r--r-- | build/GlobalAssemblyInfo.cs | 4 | ||||
-rw-r--r-- | docs/release-notes.md | 6 | ||||
-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, 11 insertions, 9 deletions
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 ****/ /// <summary>SMAPI's current semantic version.</summary> - public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.10.0"); + public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.10.1"); /// <summary>The minimum supported version of Stardew Valley.</summary> public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.32"); |