From e8e95d770e4939dbc45439152ce7acffab90c2a2 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Mon, 4 Nov 2013 16:25:07 +0400 Subject: [PATCH] Increase the version number to 1.3 --- configure.ac | 2 +- include/znc/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 337948e7..d1a82751 100644 --- a/configure.ac +++ b/configure.ac @@ -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.2]) +AC_INIT([znc], [1.3]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([src/znc.cpp]) AC_LANG([C++]) diff --git a/include/znc/version.h b/include/znc/version.h index d6014d16..772af2cc 100644 --- a/include/znc/version.h +++ b/include/znc/version.h @@ -3,7 +3,7 @@ // The following defines are for #if comparison (preprocessor only likes ints) #define VERSION_MAJOR 1 -#define VERSION_MINOR 2 +#define VERSION_MINOR 3 // This one is for display purpose #define VERSION (VERSION_MAJOR + VERSION_MINOR / 10.0)