diff options
-rw-r--r-- | release-notes.md | 6 | ||||
-rw-r--r-- | src/StardewModdingAPI/Constants.cs | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/release-notes.md b/release-notes.md index e84a91e8..b1b8925e 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,7 +1,11 @@ # Release notes +## 1.1.1 +See [log](https://github.com/CLxS/SMAPI/compare/1.1...master). + +This is a patch release that addresses compatibility with older mods. ## 1.1 -See [log](https://github.com/CLxS/SMAPI/compare/1.0...master). +See [log](https://github.com/CLxS/SMAPI/compare/1.0...1.1). For players: * Fixed console exiting immediately when some exceptions occur. diff --git a/src/StardewModdingAPI/Constants.cs b/src/StardewModdingAPI/Constants.cs index 5ec57422..0af1bdbc 100644 --- a/src/StardewModdingAPI/Constants.cs +++ b/src/StardewModdingAPI/Constants.cs @@ -23,7 +23,7 @@ namespace StardewModdingAPI ** Accessors *********/ /// <summary>SMAPI's current semantic version.</summary> - public static readonly Version Version = new Version(1, 1, 0, null); + public static readonly Version Version = new Version(1, 1, 1, $"alpha-{DateTime.Now:yyyyMMddHHmm}"); /// <summary>The minimum supported version of Stardew Valley.</summary> public const string MinimumGameVersion = "1.1"; |