diff options
| -rw-r--r-- | release-notes.md | 7 | ||||
| -rw-r--r-- | src/StardewModdingAPI/Constants.cs | 2 | 
2 files changed, 6 insertions, 3 deletions
| diff --git a/release-notes.md b/release-notes.md index f43ffe98..f3ed2225 100644 --- a/release-notes.md +++ b/release-notes.md @@ -6,10 +6,13 @@ See [log](https://github.com/CLxS/SMAPI/compare/1.0...master).  * Added new logging interface:    * simpler to use;    * supports trace logs (written to the log file, but hidden in the console by default); -  * no longer puts critical errors in a separate log file;    * messages now shown in order; -  * messages now show which mod logged them. +  * messages now show which mod logged them; +  * more consistent and intuitive console color scheme; +  * no longer puts critical errors in a separate file.  * Added optional `MinimumApiVersion` to `manifest.json`. +* Fixed `helper.ReadConfig<T>` error when the `config.json` file doesn't exist. +* Fixed console exiting immediately when some exceptions occur.  ## 1.0  See [log](https://github.com/CLxS/SMAPI/compare/0.40.1.1-3...1.0). diff --git a/src/StardewModdingAPI/Constants.cs b/src/StardewModdingAPI/Constants.cs index 86651a80..df74bf26 100644 --- a/src/StardewModdingAPI/Constants.cs +++ b/src/StardewModdingAPI/Constants.cs @@ -23,7 +23,7 @@ namespace StardewModdingAPI          ** Accessors          *********/          /// <summary>SMAPI's current semantic version.</summary> -        public static readonly Version Version = new Version(1, 0, 0, null); +        public static readonly Version Version = new Version(1, 1, 0, "beta");          /// <summary>The minimum supported version of Stardew Valley.</summary>          public const string MinimumGameVersion = "1.1"; | 
