diff --git a/Cargo.lock b/Cargo.lock
index 9f6212ae..7c38fe42 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -819,7 +819,7 @@ checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
 
 [[package]]
 name = "hemtt"
-version = "1.8.0"
+version = "1.9.0"
 dependencies = [
  "anyhow",
  "ariadne",
diff --git a/bin/Cargo.toml b/bin/Cargo.toml
index d7ca117e..02f0ed87 100644
--- a/bin/Cargo.toml
+++ b/bin/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "hemtt"
 description = "HEMTT - Arma 3 Build Tool"
-version = "1.8.0"
+version = "1.9.0"
 edition = "2021"
 license = "GPL-2.0"
 authors = ["Brett Mayson <brett@mayson.io>"]
diff --git a/book/rhai/library/hemtt.md b/book/rhai/library/hemtt.md
index a93eae49..9d81a55e 100644
--- a/book/rhai/library/hemtt.md
+++ b/book/rhai/library/hemtt.md
@@ -7,9 +7,9 @@ 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.8.0"
+HEMTT.version().to_string(); // "1.9.0"
 HEMTT.version().major(); // 1
-HEMTT.version().minor(); // 8
+HEMTT.version().minor(); // 9
 HEMTT.version().patch(); // 0
 HEMTT.version().build(); // ""
 ```
diff --git a/book/rhai/library/logging.md b/book/rhai/library/logging.md
index b4f2d3b9..1950c84a 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.8.0"
+DEBUG [post_release/test.rhai] "1.9.0"
 DEBUG [post_release/test.rhai] 1
 ```