summaryrefslogtreecommitdiff
path: root/release-notes.md
diff options
context:
space:
mode:
Diffstat (limited to 'release-notes.md')
-rw-r--r--release-notes.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/release-notes.md b/release-notes.md
index 03c5f1f3..1ff868a4 100644
--- a/release-notes.md
+++ b/release-notes.md
@@ -4,16 +4,17 @@
See [log](https://github.com/Pathoschild/SMAPI/compare/1.7...1.8).
For players:
-* Mods will no longer generate `.cache` subfolders.
+* Mods no longer generate `.cache` subfolders.
* Fixed multiple issues where mods failed during assembly loading.
* Tweaked install package to reduce confusion.
For mod developers:
-* You can now create a `SemanticVersion` from a version string.
-* **Breaking change:** `Assembly.GetExecutingAssembly().Location` will no longer reliably
- return a valid path, because mod assemblies will be loaded from memory when rewritten for
- compatibility. (It's been deprecated since SMAPI 1.3.)
+* The `SemanticVersion` constructor now accepts a string version.
* Increased deprecation level for `Extensions` to _pending removal_.
+* **Warning:** `Assembly.GetExecutingAssembly().Location` will no longer reliably
+ return a valid path, because mod assemblies are loaded from memory when rewritten for
+ compatibility. This approach has been discouraged since SMAPI 1.3; use `helper.DirectoryPath`
+ instead.
For SMAPI developers:
* Rewrote assembly loading from the ground up. The new implementation...