prepare for 2.11 release

This commit is contained in:
Jesse Plamondon-Willard 2019-03-01 14:10:29 -05:00
parent c7cb7ebb81
commit 460b440c2e
No known key found for this signature in database
GPG Key ID: 7D7C8097B62033CE
4 changed files with 11 additions and 11 deletions

View File

@ -1,16 +1,16 @@
# Release notes # Release notes
## 2.11-beta ## 2.11
Currently in beta for Stardew Valley 1.3.35-beta only. **Not compatible with non-beta versions of the game.** Released 01 March 2019 for Stardew Valley 1.3.36.
* For players: * For players:
* Updated for Stardew Valley 1.3.35 beta. * Updated for Stardew Valley 1.3.36.
* For modders: * For modders:
* Bumped all deprecation levels to _pending removal_. * Bumped all deprecation levels to _pending removal_.
* For the web UI: * For the web UI:
* The log parser now displays available updates in a section at the top. * The log parser now shows available updates in a section at the top.
* Mod compatibility page now crosses out mod links if they're outdated to prevent confusion. * The mod compatibility page now crosses out mod links if they're outdated to avoid confusion.
* Fixed smapi.io linking to an archived download in rare cases. * Fixed smapi.io linking to an archived download in rare cases.
## 2.10.2 ## 2.10.2

View File

@ -1,9 +1,9 @@
{ {
"Name": "Console Commands", "Name": "Console Commands",
"Author": "SMAPI", "Author": "SMAPI",
"Version": "2.11.0-beta.2", "Version": "2.11.0",
"Description": "Adds SMAPI console commands that let you manipulate the game.", "Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands", "UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll", "EntryDll": "ConsoleCommands.dll",
"MinimumApiVersion": "2.11.0-beta.2" "MinimumApiVersion": "2.11.0"
} }

View File

@ -1,9 +1,9 @@
{ {
"Name": "Save Backup", "Name": "Save Backup",
"Author": "SMAPI", "Author": "SMAPI",
"Version": "2.11.0-beta.2", "Version": "2.11.0",
"Description": "Automatically backs up all your saves once per day into its folder.", "Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup", "UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll", "EntryDll": "SaveBackup.dll",
"MinimumApiVersion": "2.11.0-beta.2" "MinimumApiVersion": "2.11.0"
} }

View File

@ -20,10 +20,10 @@ namespace StardewModdingAPI
** Public ** Public
****/ ****/
/// <summary>SMAPI's current semantic version.</summary> /// <summary>SMAPI's current semantic version.</summary>
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.11.0-beta.2"); public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.11.0");
/// <summary>The minimum supported version of Stardew Valley.</summary> /// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.35"); public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.36");
/// <summary>The maximum supported version of Stardew Valley.</summary> /// <summary>The maximum supported version of Stardew Valley.</summary>
public static ISemanticVersion MaximumGameVersion { get; } = null; public static ISemanticVersion MaximumGameVersion { get; } = null;