From d7be19e8f4f979c95a28b7b694b46e62eb57889d Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 19 Nov 2016 00:08:54 -0500 Subject: update for 1.1.1-alpha --- release-notes.md | 6 +++++- 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 *********/ /// SMAPI's current semantic version. - 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}"); /// The minimum supported version of Stardew Valley. public const string MinimumGameVersion = "1.1"; -- cgit