summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-18 10:59:57 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-18 10:59:57 -0400
commit2ff937397163f0ad5940b636bc7312ac747d9c39 (patch)
treea5c0daa505423868b00bc6d55156361b08bf63fa
parent79118316065a01322d8ea12a14589ec016794c32 (diff)
downloadSMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.tar.gz
SMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.tar.bz2
SMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.zip
fix compatibility check crashing for players with SDV 1.08
-rw-r--r--docs/release-notes.md6
-rw-r--r--src/SMAPI.Tests/Utilities/SemanticVersionTests.cs3
-rw-r--r--src/SMAPI/Framework/GameVersion.cs3
3 files changed, 9 insertions, 3 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 99e771ce..fc56adc8 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,4 +1,8 @@
# Release notes
+## 2.1 (upcoming)
+* For players:
+ * Fixed compatibility check crashing for players with Stardew Valley 1.08.
+
## 2.0
### Release highlights
* **Mod update checks**
@@ -18,7 +22,7 @@
SMAPI 2.0 adds several features to enable new kinds of mods (see
[API documentation](https://stardewvalleywiki.com/Modding:SMAPI_APIs)).
- The **content API** lets you edit, inject, and reload XNB data loaded by the game at any time. This let SMAPI mods do
+ The **content API** lets you edit, inject, and reload XNB data loaded by the game at any time. This lets SMAPI mods do
anything previously only possible with XNB mods, and enables new mod scenarios not possible with XNB mods (e.g.
seasonal textures, NPC clothing that depend on the weather or location, etc).
diff --git a/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs b/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs
index 03cd26c9..73ecd56e 100644
--- a/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs
+++ b/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Diagnostics.CodeAnalysis;
using Newtonsoft.Json;
using NUnit.Framework;
@@ -239,6 +239,7 @@ namespace StardewModdingAPI.Tests.Utilities
[TestCase("1.06")]
[TestCase("1.07")]
[TestCase("1.07a")]
+ [TestCase("1.08")]
[TestCase("1.1")]
[TestCase("1.11")]
[TestCase("1.2")]
diff --git a/src/SMAPI/Framework/GameVersion.cs b/src/SMAPI/Framework/GameVersion.cs
index 48159f61..1884afe9 100644
--- a/src/SMAPI/Framework/GameVersion.cs
+++ b/src/SMAPI/Framework/GameVersion.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Collections.Generic;
namespace StardewModdingAPI.Framework
@@ -22,6 +22,7 @@ namespace StardewModdingAPI.Framework
["1.06"] = "1.0.6",
["1.07"] = "1.0.7",
["1.07a"] = "1.0.8-prerelease1",
+ ["1.08"] = "1.0.8",
["1.11"] = "1.1.1"
};