From 08ec365d4fb01a504b56fcf6581740deb4232937 Mon Sep 17 00:00:00 2001 From: Selva Nair Date: Thu, 17 Nov 2016 20:09:24 -0500 Subject: [PATCH] Preparing for release with openvpn-2.4_beta1 - Bump version to 11.1.0.0 Signed-off-by: Selva Nair --- configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index bba03bd..73cbece 100644 --- a/configure.ac +++ b/configure.ac @@ -19,9 +19,10 @@ dnl distribution); if not, write to the Free Software Foundation, Inc., dnl 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA AC_PREREQ(2.59) -define([_GUI_VERSION], [11]) -AC_INIT([OpenVPN GUI],[_GUI_VERSION],[openvpn-devel@lists.sourceforge.net],[openvpn-gui],[https://github.com/openvpn/openvpn-gui/]) -AC_DEFINE([PACKAGE_VERSION_RESOURCE], [_GUI_VERSION,0,0,0], [Version in windows resource format]) +define([_GUI_VERSION_MAJOR], [11]) +define([_GUI_VERSION_MINOR], [1]) +AC_INIT([OpenVPN GUI],[_GUI_VERSION_MAJOR],[openvpn-devel@lists.sourceforge.net],[openvpn-gui],[https://github.com/openvpn/openvpn-gui/]) +AC_DEFINE([PACKAGE_VERSION_RESOURCE], [_GUI_VERSION_MAJOR,_GUI_VERSION_MINOR,0,0], [Version in windows resource format]) AC_CONFIG_AUX_DIR([.]) AM_CONFIG_HEADER([config.h]) AC_CONFIG_SRCDIR([main.h])