Skip to content

Commit

Permalink
ZNC 1.7.1-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthGandalf committed Jul 14, 2018
1 parent a4a5aee commit 9e4d89a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Expand Up @@ -15,10 +15,10 @@
#

cmake_minimum_required(VERSION 3.1)
project(ZNC VERSION 1.7.0)
set(ZNC_VERSION 1.7.x)
set(append_git_version true)
set(alpha_version "") # e.g. "-rc1"
project(ZNC VERSION 1.7.1)
set(ZNC_VERSION 1.7.1)
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")

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -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.1-rc1])
LIBZNC_VERSION=1.7.1
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/znc.cpp])
AC_LANG([C++])
Expand Down
4 changes: 2 additions & 2 deletions include/znc/version.h
Expand Up @@ -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 1
// This one is for display purpose and to check ABI compatibility of modules
#define VERSION_STR "1.7.x"
#define VERSION_STR "1.7.1"
#endif

// Don't use this one
Expand Down

0 comments on commit 9e4d89a

Please sign in to comment.