summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-07-31 19:48:14 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-07-31 19:48:14 -0400
commit43b9113f9d06bc4feda7a89365da028122d5aeee (patch)
tree093a6ab17e36eb90e0333727b60947b107df9b15 /src
parentb47068248af02a9815030cd7bd5f0bd1c49cc235 (diff)
downloadSMAPI-43b9113f9d06bc4feda7a89365da028122d5aeee.tar.gz
SMAPI-43b9113f9d06bc4feda7a89365da028122d5aeee.tar.bz2
SMAPI-43b9113f9d06bc4feda7a89365da028122d5aeee.zip
bump versions for upcoming release
Diffstat (limited to 'src')
-rw-r--r--src/SMAPI.Mods.ConsoleCommands/manifest.json2
-rw-r--r--src/SMAPI.Mods.SaveBackup/manifest.json2
-rw-r--r--src/SMAPI/Constants.cs4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/SMAPI.Mods.ConsoleCommands/manifest.json b/src/SMAPI.Mods.ConsoleCommands/manifest.json
index 7ff11d52..f89049c6 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.6.0-beta.21",
+ "Version": "2.6.0",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll"
diff --git a/src/SMAPI.Mods.SaveBackup/manifest.json b/src/SMAPI.Mods.SaveBackup/manifest.json
index 2e62b41e..ee0f2abb 100644
--- a/src/SMAPI.Mods.SaveBackup/manifest.json
+++ b/src/SMAPI.Mods.SaveBackup/manifest.json
@@ -1,7 +1,7 @@
{
"Name": "Save Backup",
"Author": "SMAPI",
- "Version": "2.6.0-beta.21",
+ "Version": "2.6.0",
"Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll"
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index c613d8b0..a6cddbe4 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -29,10 +29,10 @@ namespace StardewModdingAPI
** Public
****/
/// <summary>SMAPI's current semantic version.</summary>
- public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.6-beta.21");
+ public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.6.0");
/// <summary>The minimum supported version of Stardew Valley.</summary>
- public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.25");
+ public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.27");
/// <summary>The maximum supported version of Stardew Valley.</summary>
public static ISemanticVersion MaximumGameVersion { get; } = null;