Skip to content

Commit 0f72611

Browse files
committed
prepare for release
1 parent 5bd908e commit 0f72611

File tree

6 files changed

+12
-10
lines changed

6 files changed

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

docs/release-notes.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
_If needed, you can update to SMAPI 3.16.0 first and then install the latest version._
88
-->
99

10-
## Upcoming release
10+
## 3.18.6
11+
Released 05 October 2023 for Stardew Valley 1.5.6 or later.
12+
1113
* For players:
14+
* Fixed SpriteMaster compatibility in SMAPI 3.18.5+ with temporary workaround.
1215
* Fixed `player_add` and `list_items` console commands not including Pickled Ginger, and returning Honey instead of Wild Honey _(in Console Commands)_.
13-
* Fixed compatibility with SpriteMaster in SMAPI 3.18.5.
1416

1517
* For mod authors:
1618
* Added asset propagation for `LooseSprites/chatBox` and `LooseSprites/emojis`.
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": "3.18.5",
4+
"Version": "3.18.6",
55
"Description": "Adds SMAPI console commands that let you manipulate the game.",
66
"UniqueID": "SMAPI.ConsoleCommands",
77
"EntryDll": "ConsoleCommands.dll",
8-
"MinimumApiVersion": "3.18.5"
8+
"MinimumApiVersion": "3.18.6"
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"Name": "Error Handler",
33
"Author": "SMAPI",
4-
"Version": "3.18.5",
4+
"Version": "3.18.6",
55
"Description": "Handles some common vanilla errors to log more useful info or avoid breaking the game.",
66
"UniqueID": "SMAPI.ErrorHandler",
77
"EntryDll": "ErrorHandler.dll",
8-
"MinimumApiVersion": "3.18.5"
8+
"MinimumApiVersion": "3.18.6"
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": "3.18.5",
4+
"Version": "3.18.6",
55
"Description": "Automatically backs up all your saves once per day into its folder.",
66
"UniqueID": "SMAPI.SaveBackup",
77
"EntryDll": "SaveBackup.dll",
8-
"MinimumApiVersion": "3.18.5"
8+
"MinimumApiVersion": "3.18.6"
99
}

src/SMAPI/Constants.cs

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

5454
/// <summary>SMAPI's current raw semantic version.</summary>
55-
internal static string RawApiVersion = "3.18.5";
55+
internal static string RawApiVersion = "3.18.6";
5656
}
5757

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

0 commit comments

Comments
 (0)