diff --git a/docs/conf.py b/docs/conf.py index cca11a96..508e7d6a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,7 @@ project = "Sysinspect" copyright = "2024, Bo Maryniuk" author = "Bo Maryniuk" -version = "0.0.1" +version = "0.1.0" release = "Alpha" extensions = [ diff --git a/docs/moddev/modstruct.rst b/docs/moddev/modstruct.rst index 42297fd9..7e2b2bfd 100644 --- a/docs/moddev/modstruct.rst +++ b/docs/moddev/modstruct.rst @@ -42,7 +42,7 @@ Below are currently supported and required sections and attributes: .. code-block:: yaml - version: "0.0.1" + version: "0.1.0" ``author`` ^^^^^^^^^^ @@ -189,4 +189,4 @@ Below are currently supported and required sections and attributes: From the synopsis, the fied ``:description`` is prefixed with ``:`` (colon) symbol. The colon symbol marks a field as "internal". These fields *do not belong* to the defined ```` and will be excluded - from the final output. \ No newline at end of file + from the final output. diff --git a/modules/sys/net/src/mod_doc.yaml b/modules/sys/net/src/mod_doc.yaml index ba1a446b..7ad46ed9 100644 --- a/modules/sys/net/src/mod_doc.yaml +++ b/modules/sys/net/src/mod_doc.yaml @@ -1,5 +1,5 @@ name: "sys.net" -version: "0.0.1" +version: "0.1.0" author: "Bo Maryniuk" description: | Plugin to review the network details diff --git a/modules/sys/proc/src/mod_doc.yaml b/modules/sys/proc/src/mod_doc.yaml index 1df72dbf..56d1904a 100644 --- a/modules/sys/proc/src/mod_doc.yaml +++ b/modules/sys/proc/src/mod_doc.yaml @@ -1,5 +1,5 @@ name: "sys.proc" -version: "0.0.1" +version: "0.1.0" author: "Bo Maryniuk" description: | Plugin to perform various operations on processes, such as starting them, diff --git a/modules/sys/run/src/mod_doc.yaml b/modules/sys/run/src/mod_doc.yaml index 41ffbc82..4eff3436 100644 --- a/modules/sys/run/src/mod_doc.yaml +++ b/modules/sys/run/src/mod_doc.yaml @@ -1,5 +1,5 @@ name: "sys.run" -version: "0.0.1" +version: "0.1.0" author: "Bo Maryniuk" description: | Plugin to run just a raw commands and return generically diff --git a/src/main.rs b/src/main.rs index c4370d4f..2422beec 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,7 +10,7 @@ use std::env; mod clidef; mod mcf; -static VERSION: &str = "0.0.1"; +static VERSION: &str = "0.1.0"; static LOGGER: logger::STDOUTLogger = logger::STDOUTLogger; /// Display event handlers