1 | // |
2 | // Version.h |
3 | // |
4 | // Library: Foundation |
5 | // Package: Core |
6 | // Module: Version |
7 | // |
8 | // Version information for the POCO C++ Libraries. |
9 | // |
10 | // Copyright (c) 2004-2012, Applied Informatics Software Engineering GmbH. |
11 | // and Contributors. |
12 | // |
13 | // SPDX-License-Identifier: BSL-1.0 |
14 | // |
15 | |
16 | |
17 | #ifndef Foundation_Version_INCLUDED |
18 | #define Foundation_Version_INCLUDED |
19 | |
20 | |
21 | // |
22 | // Version Information |
23 | // |
24 | // Since 1.6.0, we're using Semantic Versioning 2.0 |
25 | // (http://semver.org/spec/v2.0.0.html) |
26 | // |
27 | // Version format is 0xAABBCCDD, where |
28 | // - AA is the major version number, |
29 | // - BB is the minor version number, |
30 | // - CC is the patch version number, and |
31 | // - DD is the pre-release designation/number. |
32 | // The pre-release designation hex digits have a special meaning: |
33 | // 00: final/stable releases |
34 | // Dx: development releases |
35 | // Ax: alpha releases |
36 | // Bx: beta releases |
37 | // |
38 | #define POCO_VERSION 0x02000000 |
39 | |
40 | #define POCO_CLICKHOUSE_PATCH 1 |
41 | |
42 | #endif // Foundation_Version_INCLUDED |
43 | |