update for 2.5.1 release

This commit is contained in:
Jesse Plamondon-Willard 2018-02-24 20:27:08 -05:00
parent a8a34f7f96
commit f7d0cf40f6
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
using System.Reflection;
[assembly: AssemblyProduct("SMAPI")]
[assembly: AssemblyVersion("2.5.0")]
[assembly: AssemblyFileVersion("2.5.0")]
[assembly: AssemblyVersion("2.5.1")]
[assembly: AssemblyFileVersion("2.5.1")]

View File

@ -1,7 +1,7 @@
{
"Name": "Console Commands",
"Author": "SMAPI",
"Version": "2.5.0",
"Version": "2.5.1",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll"

View File

@ -37,7 +37,7 @@ namespace StardewModdingAPI
** Public
****/
/// <summary>SMAPI's current semantic version.</summary>
public static ISemanticVersion ApiVersion { get; } = new SemanticVersion("2.5.0");
public static ISemanticVersion ApiVersion { get; } = new SemanticVersion("2.5.1");
/// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new SemanticVersion("1.2.30");