aboutsummaryrefslogtreecommitdiff
path: root/scripts/check_version_numbers.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check_version_numbers.py')
-rw-r--r--scripts/check_version_numbers.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/check_version_numbers.py b/scripts/check_version_numbers.py
new file mode 100644
index 00000000..3a09a9ee
--- /dev/null
+++ b/scripts/check_version_numbers.py
@@ -0,0 +1,15 @@
+# %%
+""""Ensure that version numbers between `tauri.conf.json`, `cargo.toml`, and GitHub release are the same"""
+import json
+import toml
+
+with open("src-tauri/tauri.conf.json", "rt") as f:
+ tauri_conf_json = json.load(f)
+
+with open("src-tauri/Cargo.toml", "rt") as f:
+ Cargo_toml = toml.load(f)
+
+tauri_conf_json["package"]["version"]
+Cargo_toml["package"]["version"]
+
+assert(tauri_conf_json["package"]["version"] == Cargo_toml["package"]["version"])