set max game version to prepare for 1.4 release

This commit is contained in:
Jesse Plamondon-Willard 2019-03-16 19:09:45 -04:00
parent ec0039ff7f
commit d8cf910347
No known key found for this signature in database
GPG Key ID: 7D7C8097B62033CE
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ Released 01 March 2019 for Stardew Valley 1.3.36.
* For players:
* Updated for Stardew Valley 1.3.36.
* Updated game version check for the upcoming Stardew Valley 1.4.
* For modders:
* Bumped all deprecation levels to _pending removal_.

View File

@ -26,7 +26,7 @@ namespace StardewModdingAPI
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;
public static ISemanticVersion MaximumGameVersion { get; } = new GameVersion("1.3.36");
/// <summary>The target game platform.</summary>
public static GamePlatform TargetPlatform => (GamePlatform)Constants.Platform;