diff --git a/Cargo.lock b/Cargo.lock index 623067db..3aeaeb6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1415,7 +1415,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hemtt" -version = "1.13.6" +version = "1.13.7" dependencies = [ "arma3-wiki", "clap", diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 4640c79f..591e9926 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.6" +version = "1.13.7" edition = "2021" license = "GPL-2.0" authors = ["Brett Mayson "] diff --git a/book/rhai/library/hemtt.md b/book/rhai/library/hemtt.md index f912c2d6..29f378d3 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(); // "1.13.6" +HEMTT.version().to_string(); // "1.13.7" HEMTT.version().major(); // 1 HEMTT.version().minor(); // 13 -HEMTT.version().patch(); // 6 +HEMTT.version().patch(); // 7 HEMTT.version().build(); // "" ``` diff --git a/book/rhai/library/logging.md b/book/rhai/library/logging.md index f769c12a..d9c5f2e1 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.6" +DEBUG [post_release/test.rhai] "1.13.7" DEBUG [post_release/test.rhai] 1 ```