summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-03-16 19:09:45 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-03-16 19:09:45 -0400
commitd8cf9103472cf6f4328754d3b6e776694fc5f764 (patch)
treebc7af6cbaf8f11da0a87e74cf1bf7d14d6fc9b9d
parentec0039ff7fcdd676e38e53c7ac8eac165fa996e8 (diff)
downloadSMAPI-d8cf9103472cf6f4328754d3b6e776694fc5f764.tar.gz
SMAPI-d8cf9103472cf6f4328754d3b6e776694fc5f764.tar.bz2
SMAPI-d8cf9103472cf6f4328754d3b6e776694fc5f764.zip
set max game version to prepare for 1.4 release
-rw-r--r--docs/release-notes.md1
-rw-r--r--src/SMAPI/Constants.cs2
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md
index c7922427..49dbc83e 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -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_.
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index d90eecf7..820579b8 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -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;