mirror of
https://github.com/amnezia-vpn/openvpn3.git
synced 2026-05-17 08:26:28 +03:00
This branch is targeted for consumers of the library, where we will do release handling. This branch should contain reasonably well tested and stable code only. Features under development and testing should only be worked on outside of this branch until it is ready and can be merged into stable. Since it has been quite some time since the version.hpp file was updated, this change will now set version to 3.2 - to start this new versioning regime. The version numbering and release process is further described in VersionNumbering.rst Signed-off-by: David Sommerseth <davids@openvpn.net>
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
// OpenVPN -- An application to securely tunnel IP networks
|
|
// over a single port, with support for SSL/TLS-based
|
|
// session authentication and key exchange,
|
|
// packet encryption, packet authentication, and
|
|
// packet compression.
|
|
//
|
|
// Copyright (C) 2012-2017 OpenVPN Inc.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License Version 3
|
|
// as published by the Free Software Foundation.
|
|
//
|
|
// 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 Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program in the COPYING file.
|
|
// If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// Current version of the OpenVPN core
|
|
|
|
#ifndef OPENVPN_COMMON_VERSION_H
|
|
#define OPENVPN_COMMON_VERSION_H
|
|
|
|
#define OPENVPN_VERSION "3.git:master"
|
|
|
|
#endif // OPENVPN_COMMON_VERSION_H
|