Skip to content

Commit

Permalink
Updated release date and version [4.4.26]
Browse files Browse the repository at this point in the history
  • Loading branch information
CHERTS committed Dec 23, 2021
1 parent 8faa410 commit 2469c27
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Changes for 4.4.26

4.4.26rc1 was released as 4.4.26 without any changes

--------------------------------------------------------------------------------
Changes for 4.4.26rc1

New features:
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dnl

dnl Process this file with autoconf to produce a configure script.

AC_INIT([Zabbix],[4.4.26rc1])
AC_INIT([Zabbix],[4.4.26])
AC_CONFIG_SRCDIR(src/zabbix_server/server.c)
AM_INIT_AUTOMAKE([subdir-objects filename-length-max=99])

Expand Down
2 changes: 1 addition & 1 deletion frontends/php/include/defines.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/

define('ZABBIX_VERSION', '4.4.26rc1');
define('ZABBIX_VERSION', '4.4.26');
define('ZABBIX_API_VERSION', '4.4.10');
define('ZABBIX_EXPORT_VERSION', '4.4');
define('ZABBIX_DB_VERSION', 4040000);
Expand Down
4 changes: 2 additions & 2 deletions include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#define ZBX_STR(str) ZBX_STR2(str)

#define APPLICATION_NAME "Zabbix Agent"
#define ZABBIX_REVDATE "27 November 2021"
#define ZABBIX_REVDATE "23 December 2021"
#define ZABBIX_VERSION_MAJOR 4
#define ZABBIX_VERSION_MINOR 4
#define ZABBIX_VERSION_PATCH 26
Expand All @@ -36,7 +36,7 @@
# define ZABBIX_VERSION_RC_NUM {ZABBIX_RC_NUM}
# endif
#endif
#define ZABBIX_VERSION_RC "rc1"
#define ZABBIX_VERSION_RC ""
#define ZABBIX_VERSION ZBX_STR(ZABBIX_VERSION_MAJOR) "." ZBX_STR(ZABBIX_VERSION_MINOR) "." \
ZBX_STR(ZABBIX_VERSION_PATCH) ZABBIX_VERSION_RC
#define ZABBIX_REVISION ZBX_STR(ZABBIX_VERSION_REVISION)
Expand Down
4 changes: 2 additions & 2 deletions src/go/pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ import (

const (
APPLICATION_NAME = "Zabbix Agent"
ZABBIX_REVDATE = "27 November 2021"
ZABBIX_REVDATE = "23 December 2021"
ZABBIX_VERSION_MAJOR = 4
ZABBIX_VERSION_MINOR = 4
ZABBIX_VERSION_PATCH = 26
ZABBIX_VERSION_RC = "rc1"
ZABBIX_VERSION_RC = ""
ZABBIX_VERSION_RC_NUM = "{ZABBIX_RC_NUM}"
ZABBIX_VERSION_REVISION = "{ZABBIX_REVISION}"
copyrightMessage = "Copyright (C) 2021 Zabbix SIA\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
class GeneralInformation
{
static final String APPLICATION_NAME = "Zabbix Java Gateway";
static final String REVISION_DATE = "27 November 2021";
static final String REVISION_DATE = "23 December 2021";
static final String REVISION = "{ZABBIX_REVISION}";
static final String VERSION = "4.4.26rc1";
static final String VERSION = "4.4.26";

static void printVersion()
{
Expand Down

0 comments on commit 2469c27

Please sign in to comment.