From ed5ea9f6ebde296ac1e9bacd6f020f0b80121b7f Mon Sep 17 00:00:00 2001 From: Devin Bidwell Date: Wed, 17 Dec 2025 17:57:37 -0700 Subject: [PATCH] update changelog and version bump --- Changelog.md | 6 ++++++ ModData/About/About.xml | 2 +- csharp_mod/Plugin.cs | 2 +- rust_compiler/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index 7a356c6..98e7ea0 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ # Changelog +[0.3.4] + +- Added support for `loadReagent`, which maps to the `lr` IC10 instruction + - Shorthand is `lr` + - Longform is `loadReagent` + [0.3.3] - Fixed bug where negative temperature literals were converted to Kelvin diff --git a/ModData/About/About.xml b/ModData/About/About.xml index 9c0357c..5e0bd4d 100644 --- a/ModData/About/About.xml +++ b/ModData/About/About.xml @@ -2,7 +2,7 @@ Slang JoeDiertay - 0.3.3 + 0.3.4 [h1]Slang: High-Level Programming for Stationeers[/h1] diff --git a/csharp_mod/Plugin.cs b/csharp_mod/Plugin.cs index d067bdd..75ed957 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.3"; + public const string PluginVersion = "0.3.4"; public static Mod MOD = new Mod(PluginName, PluginVersion); diff --git a/rust_compiler/Cargo.toml b/rust_compiler/Cargo.toml index 68d925b..4bdc1b7 100644 --- a/rust_compiler/Cargo.toml +++ b/rust_compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "slang" -version = "0.3.3" +version = "0.3.4" edition = "2021" [workspace]