Skip to content

Commit

Permalink
Updated release date and version [4.4.27]
Browse files Browse the repository at this point in the history
  • Loading branch information
CHERTS committed Feb 28, 2022
1 parent 6605586 commit f4ac965
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 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.27

4.4.27rc1 was released as 4.4.27 without any changes

--------------------------------------------------------------------------------
Changes for 4.4.27rc1

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.27rc1])
AC_INIT([Zabbix],[4.4.27])
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.27rc1');
define('ZABBIX_VERSION', '4.4.27');
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 "23 December 2021"
#define ZABBIX_REVDATE "28 February 2022"
#define ZABBIX_VERSION_MAJOR 4
#define ZABBIX_VERSION_MINOR 4
#define ZABBIX_VERSION_PATCH 27
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
6 changes: 3 additions & 3 deletions src/go/pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ import (

const (
APPLICATION_NAME = "Zabbix Agent"
ZABBIX_REVDATE = "23 December 2021"
ZABBIX_REVDATE = "28 February 2022"
ZABBIX_VERSION_MAJOR = 4
ZABBIX_VERSION_MINOR = 4
ZABBIX_VERSION_PATCH = 27
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" +
copyrightMessage = "Copyright (C) 2022 Zabbix SIA\n" +
"License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>.\n" +
"This is free software: you are free to change and redistribute it according to\n" +
"the license. There is NO WARRANTY, to the extent permitted by law."
Expand Down
2 changes: 1 addition & 1 deletion src/libs/zbxcommon/str.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#endif

static const char copyright_message[] =
"Copyright (C) 2021 Zabbix SIA\n"
"Copyright (C) 2022 Zabbix SIA\n"
"License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>.\n"
"This is free software: you are free to change and redistribute it according to\n"
"the license. There is NO WARRANTY, to the extent permitted by law.";
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 = "23 December 2021";
static final String REVISION_DATE = "28 February 2022";
static final String REVISION = "{ZABBIX_REVISION}";
static final String VERSION = "4.4.27rc1";
static final String VERSION = "4.4.27";

static void printVersion()
{
Expand Down

0 comments on commit f4ac965

Please sign in to comment.