Skip to content

Commit d8748fa

Browse files
committed
Prep for release of 4.4.3 RC1
1 parent 0b90821 commit d8748fa

10 files changed

+16
-16
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -2444,9 +2444,9 @@ ac_config_headers="$ac_config_headers include/config.h lib/snprintf.h lib/iobrok
24442444
24452445
PKG_NAME=nagios
24462446
2447-
PKG_VERSION="4.4.2"
2447+
PKG_VERSION="4.4.3rc1"
24482448
PKG_HOME_URL="https://www.nagios.org/"
2449-
PKG_REL_DATE="2018-08-16"
2449+
PKG_REL_DATE="2019-01-07"
24502450
24512451
ac_aux_dir=
24522452
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.4.2"
13+
PKG_VERSION="4.4.3rc1"
1414
PKG_HOME_URL="https://www.nagios.org/"
15-
PKG_REL_DATE="2018-08-16"
15+
PKG_REL_DATE="2019-01-07"
1616

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

doxy.conf

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

55
INPUT = lib/ docs/

html/index.php.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if ("@COREWINDOW@" == "yes" && isset($_GET['corewindow'])) {
2626
$url = "main.php";
2727
}
2828

29-
$this_year = '2018';
29+
$this_year = '2019';
3030
?>
3131
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
3232

html/main.php

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

4-
$this_version = '4.4.2';
5-
$this_year = '2018';
4+
$this_version = '4.4.3rc1';
5+
$this_year = '2019';
66
?>
77
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
88

@@ -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">August 16, 2018</div>
148+
<div class="releasedate">January 07, 2019</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.4.2';
4+
$this_version = '4.4.3rc1';
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.4.2"
28-
#define PROGRAM_MODIFICATION_DATE "2018-08-16"
27+
#define PROGRAM_VERSION "4.4.3rc1"
28+
#define PROGRAM_MODIFICATION_DATE "2019-01-07"
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.4.2
32+
Version: 4.4.3rc1
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.4.2
2+
Description=Nagios Core 4.4.3rc1
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.4.2
15+
CURRENTVERSION=4.4.3rc1
1616

1717
# Last date
18-
LASTDATE=2018-08-16
18+
LASTDATE=2019-01-07
1919

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

0 commit comments

Comments
 (0)