From d1997d6a738f0bc1fb47840b1d1e15b00fb5fa07 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 15 Jun 2019 02:12:29 +0100 Subject: [PATCH] ZNC 1.7.4-rc1 --- CMakeLists.txt | 8 ++++---- configure.ac | 4 ++-- include/znc/version.h | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e9ab6293..ec55d258 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,10 +15,10 @@ # cmake_minimum_required(VERSION 3.1) -project(ZNC VERSION 1.7.3) -set(ZNC_VERSION 1.7.x) -set(append_git_version true) -set(alpha_version "") # e.g. "-rc1" +project(ZNC VERSION 1.7.4) +set(ZNC_VERSION 1.7.4) +set(append_git_version false) +set(alpha_version "-rc1") # e.g. "-rc1" set(VERSION_EXTRA "" CACHE STRING "Additional string appended to version, e.g. to mark distribution") diff --git a/configure.ac b/configure.ac index b755cfe8..a65fe100 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.7.x]) -LIBZNC_VERSION=1.7.x +AC_INIT([znc], [1.7.4-rc1]) +LIBZNC_VERSION=1.7.4 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 3f3fbab8..1a136303 100644 --- a/include/znc/version.h +++ b/include/znc/version.h @@ -20,9 +20,9 @@ limitations under the License. // The following defines are for #if comparison (preprocessor only likes ints) #define VERSION_MAJOR 1 #define VERSION_MINOR 7 -#define VERSION_PATCH -1 +#define VERSION_PATCH 4 // This one is for display purpose and to check ABI compatibility of modules -#define VERSION_STR "1.7.x" +#define VERSION_STR "1.7.4" #endif // Don't use this one