bump version for upcoming SMAPI 1.15.2 release

This commit is contained in:
Jesse Plamondon-Willard 2017-08-14 00:15:16 -04:00
parent dc99ae761f
commit f89d41cdad
1 changed files with 1 additions and 1 deletions

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