Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac2
-rw-r--r--frontends/php/include/defines.inc.php2
-rw-r--r--include/version.h4
-rw-r--r--src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java4
5 files changed, 7 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 79614efb8e9..e12e3d9b674 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Changes for 3.4.0beta3
+Changes for 3.4.0rc1
New features:
A......... [ZBXNEXT-2102] improved performance of event.get() and problem.get() methods with "selectTags" option (Sasha)
diff --git a/configure.ac b/configure.ac
index 29e1fdd49b6..1f9756ed630 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,7 +19,7 @@ dnl
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([Zabbix],[3.4.0beta3])
+AC_INIT([Zabbix],[3.4.0rc1])
AC_CONFIG_SRCDIR(src/zabbix_server/server.c)
AM_INIT_AUTOMAKE([subdir-objects])
diff --git a/frontends/php/include/defines.inc.php b/frontends/php/include/defines.inc.php
index 723f9844a98..a079a37298e 100644
--- a/frontends/php/include/defines.inc.php
+++ b/frontends/php/include/defines.inc.php
@@ -19,7 +19,7 @@
**/
-define('ZABBIX_VERSION', '3.4.0beta3');
+define('ZABBIX_VERSION', '3.4.0rc1');
define('ZABBIX_API_VERSION', '3.4.0');
define('ZABBIX_EXPORT_VERSION', '3.4');
define('ZABBIX_DB_VERSION', 3030198);
diff --git a/include/version.h b/include/version.h
index 99c24517f38..0adf1e20d54 100644
--- a/include/version.h
+++ b/include/version.h
@@ -24,12 +24,12 @@
#define ZBX_STR(str) ZBX_STR2(str)
#define APPLICATION_NAME "Zabbix Agent"
-#define ZABBIX_REVDATE "3 August 2017"
+#define ZABBIX_REVDATE "15 August 2017"
#define ZABBIX_VERSION_MAJOR 3
#define ZABBIX_VERSION_MINOR 4
#define ZABBIX_VERSION_PATCH 0
#define ZABBIX_VERSION_REVISION {ZABBIX_REVISION}
-#define ZABBIX_VERSION_RC "beta3"
+#define ZABBIX_VERSION_RC "rc1"
#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)
diff --git a/src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java b/src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java
index 4b0c9203d4b..1a7aad1b2b0 100644
--- a/src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java
+++ b/src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java
@@ -22,9 +22,9 @@ package com.zabbix.gateway;
class GeneralInformation
{
static final String APPLICATION_NAME = "Zabbix Java Gateway";
- static final String REVISION_DATE = "3 August 2017";
+ static final String REVISION_DATE = "15 August 2017";
static final String REVISION = "{ZABBIX_REVISION}";
- static final String VERSION = "3.4.0beta3";
+ static final String VERSION = "3.4.0rc1";
static void printVersion()
{