diff options
-rw-r--r-- | release-notes.md | 1 | ||||
-rw-r--r-- | src/StardewModdingAPI/Constants.cs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/release-notes.md b/release-notes.md index f202f4d4..34c3e141 100644 --- a/release-notes.md +++ b/release-notes.md @@ -22,6 +22,7 @@ For players: * Fixed "unknown mod" deprecation warnings by improving how SMAPI detects the mod using the event. * Fixed `libgdiplus.dylib` errors for some players on Mac. * Fixed rare crash when window loses focus for a few players. +* Bumped minimum game version to 1.2.30. For modders: * You can now add dependencies to `manifest.json`. diff --git a/src/StardewModdingAPI/Constants.cs b/src/StardewModdingAPI/Constants.cs index 1c60da82..ef131575 100644 --- a/src/StardewModdingAPI/Constants.cs +++ b/src/StardewModdingAPI/Constants.cs @@ -36,7 +36,7 @@ namespace StardewModdingAPI public static ISemanticVersion ApiVersion { get; } = new SemanticVersion(1, 13, 1); /// <summary>The minimum supported version of Stardew Valley.</summary> - public static ISemanticVersion MinimumGameVersion { get; } = new SemanticVersion("1.2.26"); + public static ISemanticVersion MinimumGameVersion { get; } = new SemanticVersion("1.2.30"); /// <summary>The maximum supported version of Stardew Valley.</summary> public static ISemanticVersion MaximumGameVersion { get; } = null; |