2013-07-04 20:56:19 +00:00
|
|
|
/*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Copyright (c)2019 ZeroTier, Inc.
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Use of this software is governed by the Business Source License included
|
|
|
|
* in the LICENSE.TXT file in the project's root directory.
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Change Date: 2023-01-01
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* On the date above, in accordance with the Business Source License, use
|
|
|
|
* of this software will be governed by version 2.0 of the Apache License.
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2019-08-23 16:23:39 +00:00
|
|
|
/****/
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
#ifndef _ZT_VERSION_H
|
|
|
|
#define _ZT_VERSION_H
|
|
|
|
|
|
|
|
/**
|
2013-12-31 00:52:34 +00:00
|
|
|
* Major version
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2019-08-12 19:43:28 +00:00
|
|
|
#define ZEROTIER_ONE_VERSION_MAJOR @ZEROTIER_ONE_VERSION_MAJOR@
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
2013-12-31 00:52:34 +00:00
|
|
|
* Minor version
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2019-08-12 19:43:28 +00:00
|
|
|
#define ZEROTIER_ONE_VERSION_MINOR @ZEROTIER_ONE_VERSION_MINOR@
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
2013-12-31 00:52:34 +00:00
|
|
|
* Revision
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2019-08-12 19:43:28 +00:00
|
|
|
#define ZEROTIER_ONE_VERSION_REVISION @ZEROTIER_ONE_VERSION_REVISION@
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2017-01-18 17:16:23 +00:00
|
|
|
/**
|
|
|
|
* Build version
|
|
|
|
*
|
|
|
|
* This starts at 0 for each major.minor.rev tuple and can be incremented
|
|
|
|
* to force a minor update without an actual version number change. It's
|
|
|
|
* not part of the actual release version number.
|
|
|
|
*/
|
2019-08-12 19:43:28 +00:00
|
|
|
#define ZEROTIER_ONE_VERSION_BUILD @ZEROTIER_ONE_VERSION_BUILD@
|
2017-01-18 17:16:23 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
#endif
|