aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-05-24 20:58:00 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-05-24 20:58:00 +0300
commitd02ed4c50a28495be82e3072f2a746e6d1312442 (patch)
treedb333baa2638db6121ea765add1853de2b18ae97
parentba83f41d5d899e2e6f3e521b5b489123aa24b720 (diff)
Adapt version.hxx.in to increasing standard version major, minor, and patch max values up to 99999
-rw-r--r--msvc-common/version.hxx.in29
1 files changed, 14 insertions, 15 deletions
diff --git a/msvc-common/version.hxx.in b/msvc-common/version.hxx.in
index 66dcfa9..02630b8 100644
--- a/msvc-common/version.hxx.in
+++ b/msvc-common/version.hxx.in
@@ -4,25 +4,24 @@
#ifndef MSVC_FILTER_VERSION // Note: using the version macro itself.
-// Note: using build2 standard versioning scheme. The numeric version format
-// is AAABBBCCCDDDE where:
+// The numeric version format is AAAAABBBBBCCCCCDDDE where:
//
-// AAA - major version number
-// BBB - minor version number
-// CCC - bugfix version number
-// DDD - alpha / beta (DDD + 500) version number
-// E - final (0) / snapshot (1)
+// AAAAA - major version number
+// BBBBB - minor version number
+// CCCCC - bugfix version number
+// DDD - alpha / beta (DDD + 500) version number
+// E - final (0) / snapshot (1)
//
-// When DDDE is not 0, 1 is subtracted from AAABBBCCC. For example:
+// When DDDE is not 0, 1 is subtracted from AAAAABBBBBCCCCC. For example:
//
-// Version AAABBBCCCDDDE
+// Version AAAAABBBBBCCCCCDDDE
//
-// 0.1.0 0000010000000
-// 0.1.2 0000010010000
-// 1.2.3 0010020030000
-// 2.2.0-a.1 0020019990010
-// 3.0.0-b.2 0029999995020
-// 2.2.0-a.1.z 0020019990011
+// 0.1.0 0000000001000000000
+// 0.1.2 0000000001000020000
+// 1.2.3 0000100002000030000
+// 2.2.0-a.1 0000200001999990010
+// 3.0.0-b.2 0000299999999995020
+// 2.2.0-a.1.z 0000200001999990011
//
#define MSVC_FILTER_VERSION $msvc_linux.version.project_number$ULL
#define MSVC_FILTER_VERSION_STR "$msvc_linux.version.project$"