From c3c6915fa0c031dd702e3159a19c6b19560b588d Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Fri, 11 Jun 2021 16:52:23 -0700 Subject: [PATCH] Include the micro version in the version string. --- game/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/version.py b/game/version.py index 3da26c96..6e55ca35 100644 --- a/game/version.py +++ b/game/version.py @@ -2,7 +2,7 @@ from pathlib import Path def _build_version_string() -> str: - components = ["4.0"] + components = ["4.0.0"] build_number_path = Path("resources/buildnumber") if build_number_path.exists(): with build_number_path.open("r") as build_number_file: