Bump the version to 1.7

This commit is contained in:
J-P Nurmi
2015-02-16 20:22:34 +01:00
parent f47e8465ef
commit 2397f8842a
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ AC_DEFUN([AC_PROG_CC], [m4_errprint(__file__:__line__[: Something is trying to u
dnl Needed for AC_PATH_PROGS_FEATURE_CHECK which was added in 2.62
AC_PREREQ([2.62])
dnl Keep the version number in sync with main.h!
AC_INIT([znc], [1.6.0])
AC_INIT([znc], [1.7.0])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/znc.cpp])
AC_LANG([C++])
+2 -2
View File
@@ -3,10 +3,10 @@
// The following defines are for #if comparison (preprocessor only likes ints)
#define VERSION_MAJOR 1
#define VERSION_MINOR 6
#define VERSION_MINOR 7
#define VERSION_PATCH 0
// This one is for display purpose
#define VERSION_STR "1.6.0"
#define VERSION_STR "1.7.0"
// This one is for ZNCModInfo
#define VERSION (VERSION_MAJOR + VERSION_MINOR / 10.0)