Skip to content

Commit

Permalink
Revision 0.20.11
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-zip committed Oct 31, 2024
1 parent 43fc49c commit 6d1e6b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: witchcraft-cybersecurity
version: "0.20.1"
version: "0.20.11"
summary: Your OPSEC companion!
icon: "witch_docs/media_kit/logo-1.png"
grade: stable
Expand Down
2 changes: 1 addition & 1 deletion witch_craft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "witch_craft"
version = "0.20.1"
version = "0.20.11"
edition = "2021"
readme = "README.md"
homepage = "https://cosmic-zip.github.io/wiki/wiki.html"
Expand Down
1 change: 1 addition & 0 deletions witch_craft/src/core/consts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pub const SPLIT_II: &str = "--";
pub const SPLIT_I: &str = "-";
pub const DBPATH: &str = "dataset/db.json";
pub const WITCH_SPELLS_ROOT_DIR: &str = "/var/witch_craft/witch_spells/";
pub const VERSION: &str = "Version: 0.20.11 by cosmic-zip";

pub const MAGIC_DOCS: &[(&str, &str)] = &[
("account", "Generic arguments for account info or token"),
Expand Down
2 changes: 1 addition & 1 deletion witch_craft/src/core/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,6 @@ pub fn get_os_env(key: &str) -> String {

/// Show witch_craft software version!
pub fn show_version() -> i32 {
raise("Version: 0.20.1 by cosmic-zip", "");
raise(VERSION, "");
return 0;
}

0 comments on commit 6d1e6b8

Please sign in to comment.