Skip to content

Commit e947381

Browse files
committed
prepare for release
1 parent f28d4ef commit e947381

5 files changed

Lines changed: 12 additions & 9 deletions

File tree

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.4</Version>
10+
<Version>4.0.5</Version>
1111
<Product>SMAPI</Product>
1212
<LangVersion>latest</LangVersion>
1313
<AssemblySearchPaths>$(AssemblySearchPaths);{GAC}</AssemblySearchPaths>

docs/release-notes.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
[README](README.md)
22

33
# Release notes
4-
## Upcoming release
4+
## 4.0.5
5+
Released 06 April 2024 for Stardew Valley 1.6.0 or later.
6+
57
* For players:
6-
* The installer now deletes obsolete files from very old SMAPI versions again. (This was removed in SMAPI 4.0, but many players still had very old versions.)
8+
* The installer now deletes obsolete files from very old SMAPI versions again.
79
* The installer now deletes Error Handler automatically if it's at the default path.
10+
* Fixed mods sometimes not applying logic inside new buildings.
811
* Minor optimizations.
912
* Updated mod compatibility list.
1013

1114
* For mod authors:
12-
* Fixed world-changed events (e.g. `ObjectListChanged`) not working correctly inside freshly-constructed building.
15+
* Fixed world-changed events (e.g. `ObjectListChanged`) not working correctly inside freshly-constructed buildings.
1316

1417
## 4.0.4
1518
Released 29 March 2024 for Stardew Valley 1.6.0 or later.
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.4",
4+
"Version": "4.0.5",
55
"Description": "Adds SMAPI console commands that let you manipulate the game.",
66
"UniqueID": "SMAPI.ConsoleCommands",
77
"EntryDll": "ConsoleCommands.dll",
8-
"MinimumApiVersion": "4.0.4"
8+
"MinimumApiVersion": "4.0.5"
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.4",
4+
"Version": "4.0.5",
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.4"
8+
"MinimumApiVersion": "4.0.5"
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.4";
52+
internal static string RawApiVersion = "4.0.5";
5353
}
5454

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

0 commit comments

Comments
 (0)