From 60e2f40816f173f963bfb2c0e2308c4319f0e591 Mon Sep 17 00:00:00 2001 From: Kyler Date: Sun, 7 Dec 2025 23:22:53 -0700 Subject: [PATCH] Version Bump --- SLS_C/include/sls/meta.h | 2 +- SLS_Python/pyproject.toml | 2 +- SLS_Rust/sls/Cargo.toml | 2 +- SLS_Rust/sls/src/main.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SLS_C/include/sls/meta.h b/SLS_C/include/sls/meta.h index ad5ff9a..30a7445 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 "0.0.1-alpha" +#define SLS_VER "0.0.2-alpha" #ifndef GIT_COMMIT_HASH #define GIT_COMMIT_HASH "UNKNOWN" diff --git a/SLS_Python/pyproject.toml b/SLS_Python/pyproject.toml index f909e38..10ab98a 100644 --- a/SLS_Python/pyproject.toml +++ b/SLS_Python/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "sls_build_backend" [project] name = "sls_python" -version = "0.0.1-alpha" +version = "0.0.2-alpha" description = "Python reimplementation of the SLS C project" authors = [ { name = "Kyler Olsen" } ] readme = "README.md" diff --git a/SLS_Rust/sls/Cargo.toml b/SLS_Rust/sls/Cargo.toml index 47d7338..c8ef753 100644 --- a/SLS_Rust/sls/Cargo.toml +++ b/SLS_Rust/sls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sls_rs" -version = "0.0.1-alpha" +version = "0.0.2-alpha" edition = "2021" [dependencies] diff --git a/SLS_Rust/sls/src/main.rs b/SLS_Rust/sls/src/main.rs index b86be00..96b10fa 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 = "0.0.1-alpha"; +const SLS_VER: &str = "0.0.2-alpha"; pub fn print_version() { let git_hash = option_env!("GIT_COMMIT_HASH").unwrap_or("unknown");