diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-05-24 18:39:10 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-05-24 18:39:10 +0300 |
commit | 9f7b0651997611926c8c483f428b5449b7b7f785 (patch) | |
tree | da791018306c65a53e9692aa2852bc30c394206d | |
parent | aed102836f341885dae33e21d9f1f65b86195d1d (diff) |
Adapt version-build2.hxx.in to increasing standard version major, minor, and patch max values up to 99999
-rw-r--r-- | odb/boost/version-build2.hxx.in | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/odb/boost/version-build2.hxx.in b/odb/boost/version-build2.hxx.in index 51fd497..57d2ec3 100644 --- a/odb/boost/version-build2.hxx.in +++ b/odb/boost/version-build2.hxx.in @@ -8,25 +8,24 @@ // #define ODB_BOOST_VERSION 2046400 -// 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 LIBODB_BOOST_VERSION $libodb_boost.version.project_number$ULL #define LIBODB_BOOST_VERSION_STR "$libodb_boost.version.project$" |