diff --git a/Changelog.md b/Changelog.md index 46dc71e..7a356c6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,10 @@ # Changelog +[0.3.3] + +- Fixed bug where negative temperature literals were converted to Kelvin + first before applying the negative + [0.3.2] - Fixed stack overflow due to incorrect optimization of 'leaf' functions diff --git a/ModData/About/About.xml b/ModData/About/About.xml index 23fe752..9c0357c 100644 --- a/ModData/About/About.xml +++ b/ModData/About/About.xml @@ -2,7 +2,7 @@ Slang JoeDiertay - 0.3.2 + 0.3.3 [h1]Slang: High-Level Programming for Stationeers[/h1] diff --git a/csharp_mod/Plugin.cs b/csharp_mod/Plugin.cs index 339cf1b..d067bdd 100644 --- a/csharp_mod/Plugin.cs +++ b/csharp_mod/Plugin.cs @@ -41,7 +41,7 @@ namespace Slang { public const string PluginGuid = "com.biddydev.slang"; public const string PluginName = "Slang"; - public const string PluginVersion = "0.3.2"; + public const string PluginVersion = "0.3.3"; public static Mod MOD = new Mod(PluginName, PluginVersion); diff --git a/rust_compiler/Cargo.toml b/rust_compiler/Cargo.toml index 260e0c0..68d925b 100644 --- a/rust_compiler/Cargo.toml +++ b/rust_compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "slang" -version = "0.3.2" +version = "0.3.3" edition = "2021" [workspace]