Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project = "Sysinspect"
copyright = "2024, Bo Maryniuk"
author = "Bo Maryniuk"
version = "0.0.1"
version = "0.1.0"
release = "Alpha"

extensions = [
Expand Down
4 changes: 2 additions & 2 deletions docs/moddev/modstruct.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``
^^^^^^^^^^
Expand Down Expand Up @@ -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 ``<structure>`` and will be excluded
from the final output.
from the final output.
2 changes: 1 addition & 1 deletion modules/sys/net/src/mod_doc.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion modules/sys/proc/src/mod_doc.yaml
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion modules/sys/run/src/mod_doc.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down