From df3e0d5ac7a50a20050c541e56fd83b6094fb8b5 Mon Sep 17 00:00:00 2001 From: Brett Mayson Date: Fri, 18 Oct 2024 02:15:44 +0000 Subject: [PATCH] bump 1.13.3 --- Cargo.lock | 2 +- bin/Cargo.toml | 2 +- book/rhai/library/hemtt.md | 4 ++-- book/rhai/library/logging.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b4e529d..313955e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1396,7 +1396,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hemtt" -version = "1.13.2" +version = "1.13.3" dependencies = [ "arma3-wiki", "clap", diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 345490be..abb2dce4 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.2" +version = "1.13.3" edition = "2021" license = "GPL-2.0" authors = ["Brett Mayson "] diff --git a/book/rhai/library/hemtt.md b/book/rhai/library/hemtt.md index 5d133d00..795f645f 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.2" +HEMTT.version().to_string(); // "1.13.3" HEMTT.version().major(); // 1 HEMTT.version().minor(); // 13 -HEMTT.version().patch(); // 2 +HEMTT.version().patch(); // 3 HEMTT.version().build(); // "" ``` diff --git a/book/rhai/library/logging.md b/book/rhai/library/logging.md index 56d5ade5..e6469cbd 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.2" +DEBUG [post_release/test.rhai] "1.13.3" DEBUG [post_release/test.rhai] 1 ```