Version Bump
This commit is contained in:
parent
102c5b418a
commit
60e2f40816
|
|
@ -7,7 +7,7 @@
|
||||||
#define SLS_MAIN_H
|
#define SLS_MAIN_H
|
||||||
|
|
||||||
#define SLS_NAME "SLS_C"
|
#define SLS_NAME "SLS_C"
|
||||||
#define SLS_VER "0.0.1-alpha"
|
#define SLS_VER "0.0.2-alpha"
|
||||||
|
|
||||||
#ifndef GIT_COMMIT_HASH
|
#ifndef GIT_COMMIT_HASH
|
||||||
#define GIT_COMMIT_HASH "UNKNOWN"
|
#define GIT_COMMIT_HASH "UNKNOWN"
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ build-backend = "sls_build_backend"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "sls_python"
|
name = "sls_python"
|
||||||
version = "0.0.1-alpha"
|
version = "0.0.2-alpha"
|
||||||
description = "Python reimplementation of the SLS C project"
|
description = "Python reimplementation of the SLS C project"
|
||||||
authors = [ { name = "Kyler Olsen" } ]
|
authors = [ { name = "Kyler Olsen" } ]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sls_rs"
|
name = "sls_rs"
|
||||||
version = "0.0.1-alpha"
|
version = "0.0.2-alpha"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ use repl::repl;
|
||||||
|
|
||||||
// These mirror the C macros.
|
// These mirror the C macros.
|
||||||
const SLS_NAME: &str = "SLS_RUST";
|
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() {
|
pub fn print_version() {
|
||||||
let git_hash = option_env!("GIT_COMMIT_HASH").unwrap_or("unknown");
|
let git_hash = option_env!("GIT_COMMIT_HASH").unwrap_or("unknown");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue