diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-05-28 20:31:50 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-05-28 20:31:50 -0400 |
commit | bbfd42eeb3b71a773389b0df84d1b267ed0d606b (patch) | |
tree | 0e833eec08986ae0dfb6d95cf6ba0c5194ac41b5 | |
parent | 90275f1d56a6d74f93021d9b15a742f381ec4bfd (diff) | |
download | SMAPI-bbfd42eeb3b71a773389b0df84d1b267ed0d606b.tar.gz SMAPI-bbfd42eeb3b71a773389b0df84d1b267ed0d606b.tar.bz2 SMAPI-bbfd42eeb3b71a773389b0df84d1b267ed0d606b.zip |
bump minimum game version to 1.2.30
-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; |