From c74ba18067dea7647cad5a900c1adf1f6e9568f3 Mon Sep 17 00:00:00 2001 From: Kyler Date: Wed, 3 Dec 2025 15:14:29 -0700 Subject: [PATCH] Fixed version numbers --- SLS_C/include/sls/meta.h | 2 +- SLS_Rust/sls/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SLS_C/include/sls/meta.h b/SLS_C/include/sls/meta.h index 7f92e2f..ad5ff9a 100644 --- a/SLS_C/include/sls/meta.h +++ b/SLS_C/include/sls/meta.h @@ -7,7 +7,7 @@ #define SLS_MAIN_H #define SLS_NAME "SLS_C" -#define SLS_VER "a.0.0" +#define SLS_VER "0.0.1-alpha" #ifndef GIT_COMMIT_HASH #define GIT_COMMIT_HASH "UNKNOWN" diff --git a/SLS_Rust/sls/src/main.rs b/SLS_Rust/sls/src/main.rs index f7a871a..b86be00 100644 --- a/SLS_Rust/sls/src/main.rs +++ b/SLS_Rust/sls/src/main.rs @@ -12,7 +12,7 @@ use repl::repl; // These mirror the C macros. const SLS_NAME: &str = "SLS_RUST"; -const SLS_VER: &str = "a.0.0"; +const SLS_VER: &str = "0.0.1-alpha"; pub fn print_version() { let git_hash = option_env!("GIT_COMMIT_HASH").unwrap_or("unknown");