From 614de95a8e6b51924c4020d0bb739780700aef97 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Thu, 24 Nov 2016 12:19:57 -0500 Subject: update for 1.2 release --- release-notes.md | 8 ++++---- src/GlobalAssemblyInfo.cs | 4 ++-- src/StardewModdingAPI/Constants.cs | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/release-notes.md b/release-notes.md index f4c06bf4..d4ec8070 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,15 +1,15 @@ # Release notes -## 1.2 (upcoming) +## 1.2 See [log](https://github.com/CLxS/SMAPI/compare/1.1.1...master). For players: * Fixed compatibility with some older mods. - * Fixed errors in some mod event handlers crashing the game. - * Fixed issue where an error in one mod's event handler would cause other mods' handlers to never be called. + * Fixed mod errors in most event handlers crashing the game. + * Fixed mod errors in some event handlers preventing other mods from receiving the same event. For developers: - * Improved logging to show relevant details when a `ReflectionTypeLoadException` is caught by SMAPI. + * Improved logging to show `ReflectionTypeLoadException` details when it's caught by SMAPI. ## 1.1 See [log](https://github.com/CLxS/SMAPI/compare/1.0...1.1.1). diff --git a/src/GlobalAssemblyInfo.cs b/src/GlobalAssemblyInfo.cs index 8f022993..646d7488 100644 --- a/src/GlobalAssemblyInfo.cs +++ b/src/GlobalAssemblyInfo.cs @@ -2,5 +2,5 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] -[assembly: AssemblyVersion("1.1.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0.0")] +[assembly: AssemblyFileVersion("1.2.0.0")] \ No newline at end of file diff --git a/src/StardewModdingAPI/Constants.cs b/src/StardewModdingAPI/Constants.cs index 47200424..05e410ab 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, 1, null); + public static readonly Version Version = new Version(1, 2, 0, null); /// The minimum supported version of Stardew Valley. public const string MinimumGameVersion = "1.1"; -- cgit