update for release

This commit is contained in:
Jesse Plamondon-Willard 2017-09-08 11:50:49 -04:00
parent c994747e51
commit 1825755e75
4 changed files with 11 additions and 8 deletions

View File

@ -28,11 +28,14 @@ For power users:
## 1.15.4
For players:
* Fixed issues with maps loaded through Entoarox Framework.
* Fixed errors when loading some custom maps via Entoarox Framework or XNB Loader.
* Fixed errors with in-game date calculation in some mods.
For modders:
* Fixed edge cases in `SDate.AddDays(…)` calculations.
* Added UTC timestamp to logs.
* Added UTC timestamp to log file.
For SMAPI developers:
* Internal changes to support the upcoming SMAPI 2.0 release.
## 1.15.3
For players:

View File

@ -2,5 +2,5 @@ using System.Reflection;
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("1.15.3.0")]
[assembly: AssemblyFileVersion("1.15.3.0")]
[assembly: AssemblyVersion("1.15.4.0")]
[assembly: AssemblyFileVersion("1.15.4.0")]

View File

@ -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, 3);
new SemanticVersion(1, 15, 4);
#else
new SemanticVersion(2, 0, 0, $"alpha-{DateTime.UtcNow:yyyyMMddHHmm}");
#endif

View File

@ -1,10 +1,10 @@
{
{
"Name": "Trainer Mod",
"Author": "SMAPI",
"Version": {
"MajorVersion": 1,
"MinorVersion": 15,
"PatchVersion": 1,
"PatchVersion": 4,
"Build": null
},
"Description": "Adds SMAPI console commands that let you manipulate the game.",