chore: bump version to 0.1.3

This commit is contained in:
2026-02-25 22:45:58 +01:00
parent 983f9b7393
commit aefd962baf
3 changed files with 21 additions and 1 deletions
+9
View File
@@ -146,6 +146,15 @@ stk_set_module_init_fn("my_init");
/* Set custom shutdown function name (default: "stk_mod_shutdown") */
stk_set_module_shutdown_fn("my_shutdown");
/* Set function name to get module name */
stk_set_module_name_fn("my_mod_name");
/* Set function name to get module version */
stk_set_module_version_fn("my_mod_version");
/* Set functio name to get module description */
stk_set_module_description_fn("my_mod_description");
/*
* All the above functions must be called before stk_init()
* if the defaults need to be changed.