summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2016-11-24 12:19:57 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2016-11-24 12:19:57 -0500
commit614de95a8e6b51924c4020d0bb739780700aef97 (patch)
tree0b3baa3de6592d7fbaf7778ce2e6f1f8727b446c
parent3d1123837c4c61b6d91693a9cabf3ab8db88a32c (diff)
downloadSMAPI-614de95a8e6b51924c4020d0bb739780700aef97.tar.gz
SMAPI-614de95a8e6b51924c4020d0bb739780700aef97.tar.bz2
SMAPI-614de95a8e6b51924c4020d0bb739780700aef97.zip
update for 1.2 release
-rw-r--r--release-notes.md8
-rw-r--r--src/GlobalAssemblyInfo.cs4
-rw-r--r--src/StardewModdingAPI/Constants.cs2
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
*********/
/// <summary>SMAPI's current semantic version.</summary>
- public static readonly Version Version = new Version(1, 1, 1, null);
+ public static readonly Version Version = new Version(1, 2, 0, null);
/// <summary>The minimum supported version of Stardew Valley.</summary>
public const string MinimumGameVersion = "1.1";