2013-07-04 20:56:19 +00:00
|
|
|
/*
|
2015-02-17 21:11:34 +00:00
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
2016-01-12 22:04:55 +00:00
|
|
|
* Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|
|
|
*/
|
2014-10-05 17:34:25 +00:00
|
|
|
#define ZEROTIER_ONE_VERSION_MAJOR 1
|
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
|
|
|
*/
|
2015-11-02 17:32:56 +00:00
|
|
|
#define ZEROTIER_ONE_VERSION_MINOR 1
|
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
|
|
|
*/
|
2017-03-07 18:26:36 +00:00
|
|
|
#define ZEROTIER_ONE_VERSION_REVISION 19
|
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.
|
|
|
|
*/
|
|
|
|
#define ZEROTIER_ONE_VERSION_BUILD 0
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
#endif
|