summaryrefslogtreecommitdiff
path: root/core/version.py
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2026-08-02 11:05:48 -0600
committerChristian Kolset <christian.kolset@gmail.com>2026-08-02 11:05:48 -0600
commit1c349a982026736f4c2a26951d9d0aefe7b963bc (patch)
treeb66175df392e3d707ca45650facfd18bcba6c337 /core/version.py
parentfa0304793a4525db68cb53b527d695bfa2c65966 (diff)
parent0aa59c13af65beeae104662593b21ba4d8a37789 (diff)
Merge branch 'feat/auto-updater'
Diffstat (limited to 'core/version.py')
-rw-r--r--core/version.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/version.py b/core/version.py
new file mode 100644
index 0000000..8b6c492
--- /dev/null
+++ b/core/version.py
@@ -0,0 +1,12 @@
+"""
+core/version.py
+
+Single source of truth for the app version.
+
+Bump this before cutting a release — scripts/release/repo_release.py reads
+it (via Repository's app_version_attr="core.version.__version__") to tag
+the new tufup target, and core/updater.py reads it as the running app's
+current_version when checking for updates.
+"""
+
+__version__ = "1.0.0"