Skip to content

Commit 72fae01

Browse files
committed
prepare for release
1 parent a92f646 commit 72fae01

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

build/common.targets

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

docs/release-notes.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[README](README.md)
22

33
# Release notes
4-
## Upcoming release
4+
## 4.2.0
5+
Released 24 March 2025 for Stardew Valley 1.6.14 or later. See [release highlights](https://www.patreon.com/posts/125017679).
6+
57
* For players:
68
* Fixed `log_context` command not disabling the extra logs when run again.
79
* Fixed update alerts when using an unofficial port of SMAPI with a four-part version number.
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"Name": "Console Commands",
33
"Author": "SMAPI",
4-
"Version": "4.1.10",
4+
"Version": "4.2.0",
55
"Description": "Adds SMAPI console commands that let you manipulate the game.",
66
"UniqueId": "SMAPI.ConsoleCommands",
77
"EntryDll": "ConsoleCommands.dll",
8-
"MinimumApiVersion": "4.1.10"
8+
"MinimumApiVersion": "4.2.0"
99
}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"Name": "Save Backup",
33
"Author": "SMAPI",
4-
"Version": "4.1.10",
4+
"Version": "4.2.0",
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.1.10"
8+
"MinimumApiVersion": "4.2.0"
99
}

src/SMAPI/Constants.cs

+1-1
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.1.10";
52+
internal static string RawApiVersion = "4.2.0";
5353
}
5454

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

0 commit comments

Comments
 (0)