aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2')
-rw-r--r--sources/shiboken2/shiboken_version.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/sources/shiboken2/shiboken_version.py b/sources/shiboken2/shiboken_version.py
index a6d7eeb8d..45d2a7381 100644
--- a/sources/shiboken2/shiboken_version.py
+++ b/sources/shiboken2/shiboken_version.py
@@ -40,8 +40,14 @@
major_version = "5"
minor_version = "11"
patch_version = "0"
-pre_release_version_type = "" # e.g. "a", "b", "rc".
-pre_release_version = "" # e.g "1", "2", (which means "beta1", "beta2", if type is "b")
+
+# For example: "a", "b", "rc"
+# (which means "alpha", "beta", "release candidate").
+# An empty string means the generated package will be an official release.
+pre_release_version_type = ""
+
+# For example: "1", "2" (which means "beta1", "beta2", if type is "b").
+pre_release_version = ""
if __name__ == '__main__':
# Used by CMake.