// Program version includes Zabbix revision and it's time and date, compilation time and date, Go compiler tree's
** Copyright (C) 2001-2025 Zabbix SIA
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
// Package version provides zabbix release version
ZABBIX_REVDATE = "9 December 2024"
ZABBIX_VERSION_RC = "alpha1"
ZABBIX_VERSION_RC_NUM = "{ZABBIX_RC_NUM}"
ZABBIX_VERSION_REVISION = "{ZABBIX_REVISION}"
copyrightMessage = "Copyright (C) 2025 Zabbix SIA\n" +
"License AGPLv3: GNU Affero General Public License version 3 <https://www.gnu.org/licenses/>.\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."
titleMessage string = "{undefined}"
compileDate string = "{undefined}"
compileTime string = "{undefined}"
compileOs string = "{undefined}"
compileArch string = "{undefined}"
return ZABBIX_VERSION_MAJOR
return ZABBIX_VERSION_MINOR
return ZABBIX_VERSION_PATCH
var ver string = fmt.Sprintf("%d.%d.%d", Major(), Minor(), Patch())
var ver string = fmt.Sprintf("%d.%d.%d", Major(), Minor(), Patch())
var ver string = fmt.Sprintf("%d.%d.%d", Major(), Minor(), Patch())
return fmt.Sprintf("%d.%d", Major(), Minor())