update changelog and version bump

This commit is contained in:
2025-12-15 23:15:41 -07:00
parent 477c2b1aef
commit 88b6571659
4 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Changelog # Changelog
[0.3.3]
- Fixed bug where negative temperature literals were converted to Kelvin
first before applying the negative
[0.3.2] [0.3.2]
- Fixed stack overflow due to incorrect optimization of 'leaf' functions - Fixed stack overflow due to incorrect optimization of 'leaf' functions

View File

@@ -2,7 +2,7 @@
<ModMetadata xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ModMetadata xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Name>Slang</Name> <Name>Slang</Name>
<Author>JoeDiertay</Author> <Author>JoeDiertay</Author>
<Version>0.3.2</Version> <Version>0.3.3</Version>
<Description> <Description>
[h1]Slang: High-Level Programming for Stationeers[/h1] [h1]Slang: High-Level Programming for Stationeers[/h1]

View File

@@ -41,7 +41,7 @@ namespace Slang
{ {
public const string PluginGuid = "com.biddydev.slang"; public const string PluginGuid = "com.biddydev.slang";
public const string PluginName = "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); public static Mod MOD = new Mod(PluginName, PluginVersion);

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "slang" name = "slang"
version = "0.3.2" version = "0.3.3"
edition = "2021" edition = "2021"
[workspace] [workspace]