Skip to content

Commit 3d78e36

Browse files
committed
Prep for release 4.5.3
1 parent d5595cb commit 3d78e36

11 files changed

+16
-16
lines changed

Changelog

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Nagios Core 4 Change Log
33
########################
44

5-
4.5.3 - 2024-XX-XX
5+
4.5.3 - 2024-06-11
66
------------------
77
* Update jQuery (#960) (Dylan Anderson)
88
* Remove pages using outdated AngularJS framework (#960) (Dylan Anderson)

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -2474,9 +2474,9 @@ ac_config_headers="$ac_config_headers include/config.h lib/snprintf.h lib/iobrok
24742474
24752475
PKG_NAME=nagios
24762476
2477-
PKG_VERSION="4.5.2"
2477+
PKG_VERSION="4.5.3"
24782478
PKG_HOME_URL="https://www.nagios.org/"
2479-
PKG_REL_DATE="2024-04-30"
2479+
PKG_REL_DATE="2024-06-11"
24802480
24812481
ac_aux_dir=
24822482
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ AC_PREFIX_DEFAULT(/usr/local/nagios)
1010

1111
PKG_NAME=nagios
1212

13-
PKG_VERSION="4.5.2"
13+
PKG_VERSION="4.5.3"
1414
PKG_HOME_URL="https://www.nagios.org/"
15-
PKG_REL_DATE="2024-04-30"
15+
PKG_REL_DATE="2024-06-11"
1616

1717
dnl Figure out how to invoke "install" and what install options to use.
1818
AC_PROG_INSTALL

contrib/epel-nagios.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global bootstrap 0
44

55
Name: nagios
6-
Version: 4.5.2
6+
Version: 4.5.3
77
Release: 4%{?dist}
88

99
Summary: Host/service/network monitoring program

doxy.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PROJECT_NAME = Nagios
2-
PROJECT_NUMBER = 4.5.2
2+
PROJECT_NUMBER = 4.5.3
33
PROJECT_BRIEF = "Dev docs for Nagios core and neb-module hackers"
44

55
INPUT = lib/ docs/

html/main.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
include_once(dirname(__FILE__).'/includes/utils.inc.php');
33

4-
$this_version = '4.5.2';
4+
$this_version = '4.5.3';
55
$this_year = '2024';
66
?>
77
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
@@ -145,7 +145,7 @@ function setCoreStatusHTML(image, text) {
145145
<div id="currentversioninfo">
146146
<div class="product">Nagios<sup><span style="font-size: small;">&reg;</span></sup> Core<sup><span style="font-size: small;">&trade;</span></sup></div>
147147
<div class="version">Version <?php echo $this_version; ?></div>
148-
<div class="releasedate">April 30, 2024</div>
148+
<div class="releasedate">June 11, 2024</div>
149149
<div class="checkforupdates"><a href="https://www.nagios.org/checkforupdates/?version=<?php echo $this_version; ?>&amp;product=nagioscore" target="_blank">Check for updates</a></div>
150150
</div>
151151

html/side.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
include_once(dirname(__FILE__).'/includes/utils.inc.php');
33

4-
$this_version = '4.5.2';
4+
$this_version = '4.5.3';
55
$link_target = 'main';
66
?>
77
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

include/common.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
#include "shared.h"
2626

27-
#define PROGRAM_VERSION "4.5.2"
28-
#define PROGRAM_MODIFICATION_DATE "2024-04-30"
27+
#define PROGRAM_VERSION "4.5.3"
28+
#define PROGRAM_MODIFICATION_DATE "2024-06-11"
2929

3030
NAGIOS_BEGIN_DECL
3131

nagios.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
Summary: Open Source host, service and network monitoring program
3131
Name: nagios
32-
Version: 4.5.2
32+
Version: 4.5.3
3333
Release: 2%{?dist}
3434
License: GPL
3535
Group: Applications/System

startup/default-service.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Unit]
2-
Description=Nagios Core 4.5.2
2+
Description=Nagios Core 4.5.3
33
Documentation=https://www.nagios.org/documentation
44
After=network.target local-fs.target
55

update-version

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ else
1212
fi
1313

1414
# Current version number
15-
CURRENTVERSION=4.5.2
15+
CURRENTVERSION=4.5.3
1616

1717
# Last date
18-
LASTDATE=2024-04-30
18+
LASTDATE=2024-06-11
1919

2020
if [ "x$1" = "x" ]
2121
then

0 commit comments

Comments
 (0)