Skip to content

Commit 02f5324

Browse files
committed
prepare for release
1 parent 7e7cb1a commit 02f5324

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

build/common.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repo. It imports the other MSBuild files as needed.
77
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
88
<PropertyGroup>
99
<!--set general build properties -->
10-
<Version>4.0.7</Version>
10+
<Version>4.0.8</Version>
1111
<Product>SMAPI</Product>
1212
<LangVersion>latest</LangVersion>
1313
<AssemblySearchPaths>$(AssemblySearchPaths);{GAC}</AssemblySearchPaths>

docs/release-notes.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
[README](README.md)
22

33
# Release notes
4-
## Upcoming release
4+
## 4.0.8
5+
Released 21 April 2024 for Stardew Valley 1.6.4 or later.
6+
57
* For players:
68
* Added option to disable Harmony fix for players with certain crashes.
79
* Fixed crash for non-English players in split-screen mode when mods translate some vanilla assets.
810
* SMAPI no longer rewrites mods which use Harmony 1.x, to help reduce Harmony crashes.
911
_This should affect very few mods that still work otherwise, and any Harmony mod updated after July 2021 should be unaffected._
12+
* Updated mod compatibility list to prevent common crashes.
1013

1114
* For the update check server:
1215
* Rewrote update checks for mods on Nexus Mods to use a new Nexus API endpoint.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"Name": "Console Commands",
33
"Author": "SMAPI",
4-
"Version": "4.0.7",
4+
"Version": "4.0.8",
55
"Description": "Adds SMAPI console commands that let you manipulate the game.",
66
"UniqueID": "SMAPI.ConsoleCommands",
77
"EntryDll": "ConsoleCommands.dll",
8-
"MinimumApiVersion": "4.0.7"
8+
"MinimumApiVersion": "4.0.8"
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"Name": "Save Backup",
33
"Author": "SMAPI",
4-
"Version": "4.0.7",
4+
"Version": "4.0.8",
55
"Description": "Automatically backs up all your saves once per day into its folder.",
66
"UniqueID": "SMAPI.SaveBackup",
77
"EntryDll": "SaveBackup.dll",
8-
"MinimumApiVersion": "4.0.7"
8+
"MinimumApiVersion": "4.0.8"
99
}

src/SMAPI/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ internal static class EarlyConstants
4949
internal static int? LogScreenId { get; set; }
5050

5151
/// <summary>SMAPI's current raw semantic version.</summary>
52-
internal static string RawApiVersion = "4.0.7";
52+
internal static string RawApiVersion = "4.0.8";
5353
}
5454

5555
/// <summary>Contains SMAPI's constants and assumptions.</summary>

0 commit comments

Comments
 (0)