Version Bump

This commit is contained in:
Kyler Olsen 2025-12-07 23:22:53 -07:00
parent 102c5b418a
commit 60e2f40816
4 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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"

View File

@ -1,6 +1,6 @@
[package]
name = "sls_rs"
version = "0.0.1-alpha"
version = "0.0.2-alpha"
edition = "2021"
[dependencies]

View File

@ -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");