From ff7758b573afc5dc96ea699eee95f313a938406b Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Fri, 1 May 2020 22:20:07 +0100 Subject: [PATCH] Increase version number to 1.9.x --- CMakeLists.txt | 4 ++-- configure.ac | 4 ++-- include/znc/version.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a80eae58..c7c19158 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ # cmake_minimum_required(VERSION 3.1) -project(ZNC VERSION 1.8.0 LANGUAGES CXX) -set(ZNC_VERSION 1.8.x) +project(ZNC VERSION 1.9.0 LANGUAGES CXX) +set(ZNC_VERSION 1.9.x) set(append_git_version true) set(alpha_version "") # e.g. "-rc1" set(VERSION_EXTRA "" CACHE STRING diff --git a/configure.ac b/configure.ac index 2dd5b1d3..5731b581 100644 --- a/configure.ac +++ b/configure.ac @@ -7,8 +7,8 @@ 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 version.h! -AC_INIT([znc], [1.8.x]) -LIBZNC_VERSION=1.8.x +AC_INIT([znc], [1.9.x]) +LIBZNC_VERSION=1.9.x 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 d40ea5f6..9f30b56e 100644 --- a/include/znc/version.h +++ b/include/znc/version.h @@ -19,10 +19,10 @@ limitations under the License. #ifndef BUILD_WITH_CMAKE // The following defines are for #if comparison (preprocessor only likes ints) #define VERSION_MAJOR 1 -#define VERSION_MINOR 8 +#define VERSION_MINOR 9 #define VERSION_PATCH -1 // This one is for display purpose and to check ABI compatibility of modules -#define VERSION_STR "1.8.x" +#define VERSION_STR "1.9.x" #endif // Don't use this one