summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-12-20 22:34:58 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-12-20 22:34:58 -0500
commit50a146d1c9a228391c4201685a5e0df9daa529e9 (patch)
tree50f191271fedee588f66606cf0671fd97a7d4d2a /src
parent85b947dced10f5398055af36b5fdb6b8d32a6a6b (diff)
downloadSMAPI-50a146d1c9a228391c4201685a5e0df9daa529e9.tar.gz
SMAPI-50a146d1c9a228391c4201685a5e0df9daa529e9.tar.bz2
SMAPI-50a146d1c9a228391c4201685a5e0df9daa529e9.zip
update game version
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI/Constants.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 88f79811..5ff324b0 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -54,10 +54,10 @@ namespace StardewModdingAPI
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.7.6");
/// <summary>The minimum supported version of Stardew Valley.</summary>
- public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.1");
+ public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.5.0");
/// <summary>The maximum supported version of Stardew Valley.</summary>
- public static ISemanticVersion MaximumGameVersion { get; } = new GameVersion("1.4.5");
+ public static ISemanticVersion MaximumGameVersion { get; } = null;
/// <summary>The target game platform.</summary>
public static GamePlatform TargetPlatform { get; } = EarlyConstants.Platform;