update for SMAPI 1.15.3 release
This commit is contained in:
parent
e93d58f69b
commit
7d5f95a6db
|
@ -26,6 +26,10 @@ For mod developers:
|
|||
For power users:
|
||||
* Added command-line arguments to the SMAPI installer so it can be scripted.
|
||||
|
||||
## 1.15.3
|
||||
For players:
|
||||
* Fixed mods being marked as duplicate incorrectly in some cases.
|
||||
|
||||
## 1.15.2
|
||||
For players:
|
||||
* Improved errors when a mod DLL can't be loaded.
|
||||
|
|
|
@ -2,5 +2,5 @@ using System.Reflection;
|
|||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: AssemblyVersion("1.15.2.0")]
|
||||
[assembly: AssemblyFileVersion("1.15.2.0")]
|
||||
[assembly: AssemblyVersion("1.15.3.0")]
|
||||
[assembly: AssemblyFileVersion("1.15.3.0")]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
@ -36,7 +36,7 @@ namespace StardewModdingAPI
|
|||
/// <summary>SMAPI's current semantic version.</summary>
|
||||
public static ISemanticVersion ApiVersion { get; } =
|
||||
#if SMAPI_1_x
|
||||
new SemanticVersion(1, 15, 2);
|
||||
new SemanticVersion(1, 15, 3);
|
||||
#else
|
||||
new SemanticVersion(2, 0, 0, $"alpha-{DateTime.UtcNow:yyyyMMddHHmm}");
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue