diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-19 00:08:54 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-19 00:08:54 -0500 |
commit | d7be19e8f4f979c95a28b7b694b46e62eb57889d (patch) | |
tree | 0e61344a9ee4454bb73837a3fd181b56b1443741 | |
parent | 14eee1e48225a3e7a782373ea28186e75d619c08 (diff) | |
download | SMAPI-d7be19e8f4f979c95a28b7b694b46e62eb57889d.tar.gz SMAPI-d7be19e8f4f979c95a28b7b694b46e62eb57889d.tar.bz2 SMAPI-d7be19e8f4f979c95a28b7b694b46e62eb57889d.zip |
update for 1.1.1-alpha
-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"; |