diff --git a/Cargo.lock b/Cargo.lock index 3564ad16..75ada6cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1396,7 +1396,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hemtt" -version = "1.13.4" +version = "1.13.5" dependencies = [ "arma3-wiki", "clap", diff --git a/bin/Cargo.toml b/bin/Cargo.toml index b45064dd..9b1b916d 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hemtt" description = "HEMTT - Arma 3 Build Tool" -version = "1.13.4" +version = "1.13.5" edition = "2021" license = "GPL-2.0" authors = ["Brett Mayson "] diff --git a/book/rhai/library/hemtt.md b/book/rhai/library/hemtt.md index c1bbf28d..10d0bb91 100644 --- a/book/rhai/library/hemtt.md +++ b/book/rhai/library/hemtt.md @@ -7,10 +7,10 @@ The `HEMTT` constant gives access to information and the ability to modify the b Returns the version of HEMTT. ```js -HEMTT.version().to_string(); // "4" +HEMTT.version().to_string(); // "1.13.5" HEMTT.version().major(); // 1 HEMTT.version().minor(); // 13 -HEMTT.version().patch(); // 4 +HEMTT.version().patch(); // 5 HEMTT.version().build(); // "" ``` diff --git a/book/rhai/library/logging.md b/book/rhai/library/logging.md index 9764869f..26d3c6aa 100644 --- a/book/rhai/library/logging.md +++ b/book/rhai/library/logging.md @@ -26,7 +26,7 @@ debug(HEMTT.project().version.major()); ``` ```sh -DEBUG [post_release/test.rhai] "1.13.4" +DEBUG [post_release/test.rhai] "1.13.5" DEBUG [post_release/test.rhai] 1 ```