blob: 370cda1f36edebb3a357aeaf93cdc91f54864bd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// file : odb/version.hxx.in
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef LIBODB_VERSION // Note: using the version macro itself.
// New numeric version format is AAAAABBBBBCCCCCDDDE where:
//
// 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 AAAAABBBBBCCCCC. For example:
//
// Version AAAAABBBBBCCCCCDDDE
//
// 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_VERSION_FULL 200004999995261ULL
#define LIBODB_VERSION_STR "2.5.0-b.26.20240502090701.7ce5b6d18b67"
#define LIBODB_VERSION_ID "2.5.0-b.26.7ce5b6d18b67"
#define LIBODB_VERSION_MAJOR 2
#define LIBODB_VERSION_MINOR 5
#define LIBODB_VERSION_PATCH 0
#define LIBODB_PRE_RELEASE true
#define LIBODB_SNAPSHOT 20240502090701ULL
#define LIBODB_SNAPSHOT_ID "7ce5b6d18b67"
// Old/deprecated numeric version format is AABBCCDD where:
//
// AA - major version number
// BB - minor version number
// CC - bugfix version number
// DD - alpha / beta (DD + 50) version number
//
// When DD is not 00, 1 is subtracted from AABBCC. For example:
//
// Version AABBCCDD
// 2.0.0 02000000
// 2.1.0 02010000
// 2.1.1 02010100
// 2.2.0.a1 02019901
// 3.0.0.b2 02999952
//
// ODB interface version: minor, major, and alpha/beta versions.
//
#define ODB_VERSION 20476
#define ODB_VERSION_STR "2.5-b.26"
// libodb version: interface version plus the bugfix version.
//
#define LIBODB_VERSION 2049976
#endif // LIBODB_VERSION
|