Skip to content

Commit

Permalink
prepare for 2.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Pathoschild committed Mar 1, 2019
1 parent c7cb7eb commit 460b440
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Release notes
## 2.11-beta
Currently in beta for Stardew Valley 1.3.35-beta only. **Not compatible with non-beta versions of the game.**
## 2.11
Released 01 March 2019 for Stardew Valley 1.3.36.

* For players:
* Updated for Stardew Valley 1.3.35 beta.
* Updated for Stardew Valley 1.3.36.

* For modders:
* Bumped all deprecation levels to _pending removal_.

* For the web UI:
* The log parser now displays available updates in a section at the top.
* Mod compatibility page now crosses out mod links if they're outdated to prevent confusion.
* The log parser now shows available updates in a section at the top.
* 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.

## 2.10.2
Expand Down
4 changes: 2 additions & 2 deletions src/SMAPI.Mods.ConsoleCommands/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"Name": "Console Commands",
"Author": "SMAPI",
"Version": "2.11.0-beta.2",
"Version": "2.11.0",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll",
"MinimumApiVersion": "2.11.0-beta.2"
"MinimumApiVersion": "2.11.0"
}
4 changes: 2 additions & 2 deletions src/SMAPI.Mods.SaveBackup/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"Name": "Save Backup",
"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.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll",
"MinimumApiVersion": "2.11.0-beta.2"
"MinimumApiVersion": "2.11.0"
}
4 changes: 2 additions & 2 deletions src/SMAPI/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ public static class Constants
** Public
****/
/// <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>
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>
public static ISemanticVersion MaximumGameVersion { get; } = null;
Expand Down

0 comments on commit 460b440

Please sign in to comment.