summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build/GlobalAssemblyInfo.cs4
-rw-r--r--docs/release-notes.md10
-rw-r--r--src/SMAPI/Constants.cs2
3 files changed, 9 insertions, 7 deletions
diff --git a/build/GlobalAssemblyInfo.cs b/build/GlobalAssemblyInfo.cs
index 9af704e0..65211aad 100644
--- a/build/GlobalAssemblyInfo.cs
+++ b/build/GlobalAssemblyInfo.cs
@@ -2,5 +2,5 @@ using System.Reflection;
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
-[assembly: AssemblyVersion("2.1.0.0")]
-[assembly: AssemblyFileVersion("2.1.0.0")]
+[assembly: AssemblyVersion("2.2.0.0")]
+[assembly: AssemblyFileVersion("2.2.0.0")]
diff --git a/docs/release-notes.md b/docs/release-notes.md
index f371e5d4..338a0f9e 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -2,12 +2,12 @@
## 2.2
* For players:
* Fixed error when a mod loads custom assets on Linux/Mac.
- * Fixed error when a mod has an invalid `EntryDLL` manifest value format.
+ * Fixed error when a mod has an invalid `EntryDLL` filename.
* Fixed rare error when Mac adds an `mcs` file to the installer package.
* Fixed `player_add` command not handling tool upgrade levels.
* Updated compatibility list.
- * (log.smapi.io) Saved logs no longer expire after a week.
- * (log.smapi.io) The upload-log modal can now be closed by pressing `ESC` or clicking outside it.
+ * The [log parser][] no longer expires logs after a week.
+ * The [log parser][] now lets you close modals with `ESC` or a click outside it.
* For modders:
* Added `DaysSinceStart` property to `SDate` dates.
@@ -16,7 +16,7 @@
## 2.1
* For players:
- * Added a log parser at [log.smapi.io](https://log.smapi.io).
+ * Added a [log parser][] site.
* Added better Steam instructions to the SMAPI installer.
* Renamed the bundled _TrainerMod_ to _ConsoleCommands_ to make its purpose clearer.
* Removed the game's test messages from the console log.
@@ -558,3 +558,5 @@ For SMAPI developers:
* 0.3 (2016-03-01, [log](https://github.com/Pathoschild/SMAPI/compare/Alpha0.2...0.3))
* 0.2 (2016-02-29, [log](https://github.com/Pathoschild/SMAPI/compare/Alpha0.1...Alpha0.2)
* 0.1 (2016-02-28)
+
+[log parser]: https://log.smapi.io
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index a2dbdd98..c9f9be41 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -29,7 +29,7 @@ namespace StardewModdingAPI
** Public
****/
/// <summary>SMAPI's current semantic version.</summary>
- public static ISemanticVersion ApiVersion { get; } = new SemanticVersion(2, 1, 0);
+ public static ISemanticVersion ApiVersion { get; } = new SemanticVersion(2, 2, 0);
/// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new SemanticVersion("1.2.30");