summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-02-25 01:49:53 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-02-25 01:49:53 -0500
commit51118337e5e8cbb6803ffee4e7c0b411aba2b3e0 (patch)
tree2dfc969c6e27e78b05deb1e59201ded5392b7dc7
parentf65e618cd90e1721bd3a1df7f2af2478429bf7ba (diff)
downloadSMAPI-51118337e5e8cbb6803ffee4e7c0b411aba2b3e0.tar.gz
SMAPI-51118337e5e8cbb6803ffee4e7c0b411aba2b3e0.tar.bz2
SMAPI-51118337e5e8cbb6803ffee4e7c0b411aba2b3e0.zip
update for 2.5.2 release
-rw-r--r--build/GlobalAssemblyInfo.cs4
-rw-r--r--src/SMAPI.Mods.ConsoleCommands/manifest.json2
-rw-r--r--src/SMAPI/Constants.cs2
3 files changed, 4 insertions, 4 deletions
diff --git a/build/GlobalAssemblyInfo.cs b/build/GlobalAssemblyInfo.cs
index 83bf7d82..f90ab358 100644
--- a/build/GlobalAssemblyInfo.cs
+++ b/build/GlobalAssemblyInfo.cs
@@ -1,5 +1,5 @@
using System.Reflection;
[assembly: AssemblyProduct("SMAPI")]
-[assembly: AssemblyVersion("2.5.1")]
-[assembly: AssemblyFileVersion("2.5.1")]
+[assembly: AssemblyVersion("2.5.2")]
+[assembly: AssemblyFileVersion("2.5.2")]
diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json
index 645f4315..f4b3884d 100644
--- a/src/SMAPI.Mods.ConsoleCommands/manifest.json
+++ b/src/SMAPI.Mods.ConsoleCommands/manifest.json
@@ -1,7 +1,7 @@
{
"Name": "Console Commands",
"Author": "SMAPI",
- "Version": "2.5.1",
+ "Version": "2.5.2",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll"
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 3e57ded9..fe9fdf9b 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -37,7 +37,7 @@ namespace StardewModdingAPI
** Public
****/
/// <summary>SMAPI's current semantic version.</summary>
- public static ISemanticVersion ApiVersion { get; } = new SemanticVersion("2.5.1");
+ public static ISemanticVersion ApiVersion { get; } = new SemanticVersion("2.5.2");
/// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new SemanticVersion("1.2.30");