update for 1.3 release

This commit is contained in:
Jesse Plamondon-Willard 2016-12-04 09:40:34 -05:00
parent feb2d89ff6
commit 48adbe2492
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Release notes
## 1.3
See [log](https://github.com/CLxS/SMAPI/compare/stable...develop).
See [log](https://github.com/CLxS/SMAPI/compare/1.2...1.3).
For players:
* You can now run most mods on any platform (e.g. run Windows mods on Linux/Mac).

View File

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

View File

@ -26,7 +26,7 @@ namespace StardewModdingAPI
** Accessors
*********/
/// <summary>SMAPI's current semantic version.</summary>
public static readonly Version Version = new Version(1, 2, 0, null);
public static readonly Version Version = new Version(1, 3, 0, null);
/// <summary>The minimum supported version of Stardew Valley.</summary>
public const string MinimumGameVersion = "1.1";