Skip to content

Commit

Permalink
.......... [ZBXNEXT-826] updated release version to 7.0.9rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergejs Olonkins authored and Yur11 committed Jan 9, 2025
1 parent 1deffe8 commit 17711d3
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Changes for 7.0.9rc1

New features:

Bug fixes:

--------------------------------------------------------------------------------
Changes for 7.0.8

7.0.8rc2 was released as 7.0.8 without any changes
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dnl

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

AC_INIT([Zabbix],[7.0.8])
AC_INIT([Zabbix],[7.0.9rc1])
AC_CONFIG_SRCDIR(src/zabbix_server/server.c)
AM_INIT_AUTOMAKE([subdir-objects tar-pax])

Expand Down
4 changes: 2 additions & 2 deletions include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define ZABBIX_REVDATE "6 January 2025"
#define ZABBIX_VERSION_MAJOR 7
#define ZABBIX_VERSION_MINOR 0
#define ZABBIX_VERSION_PATCH 8
#define ZABBIX_VERSION_PATCH 9
#ifndef ZABBIX_VERSION_REVISION
# define ZABBIX_VERSION_REVISION {ZABBIX_REVISION}
#endif
Expand All @@ -31,7 +31,7 @@
# define ZABBIX_VERSION_RC_NUM {ZABBIX_RC_NUM}
# endif
#endif
#define ZABBIX_VERSION_RC ""
#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_VERSION_SHORT ZBX_STR(ZABBIX_VERSION_MAJOR) "." ZBX_STR(ZABBIX_VERSION_MINOR) "." \
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 @@ -25,8 +25,8 @@ const (
ZABBIX_REVDATE = "6 January 2025"
ZABBIX_VERSION_MAJOR = 7
ZABBIX_VERSION_MINOR = 0
ZABBIX_VERSION_PATCH = 8
ZABBIX_VERSION_RC = ""
ZABBIX_VERSION_PATCH = 9
ZABBIX_VERSION_RC = "rc1"
ZABBIX_VERSION_RC_NUM = "{ZABBIX_RC_NUM}"
ZABBIX_VERSION_REVISION = "{ZABBIX_REVISION}"
copyrightMessage = "Copyright (C) 2025 Zabbix SIA\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class GeneralInformation
static final String APPLICATION_NAME = "Zabbix Java Gateway";
static final String REVISION_DATE = "6 January 2025";
static final String REVISION = "{ZABBIX_REVISION}";
static final String VERSION = "7.0.8";
static final String VERSION = "7.0.9rc1";

static void printVersion()
{
Expand Down
4 changes: 2 additions & 2 deletions ui/include/defines.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
** If not, see <https://www.gnu.org/licenses/>.
**/

define('ZABBIX_VERSION', '7.0.8');
define('ZABBIX_API_VERSION', '7.0.8');
define('ZABBIX_VERSION', '7.0.9rc1');
define('ZABBIX_API_VERSION', '7.0.9');
define('ZABBIX_EXPORT_VERSION', '7.0');

define('ZABBIX_DB_VERSION', 7000000);
Expand Down
2 changes: 1 addition & 1 deletion ui/tests/api_json/testAPIInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public function testAPIInfo_VersionWithoutAuth() {
$this->disableAuthorization();
$result = $this->call('apiinfo.version', []);

$this->assertSame('7.0.8', $result['result']);
$this->assertSame('7.0.9', $result['result']);
}
}

0 comments on commit 17711d3

Please sign in to comment.