Skip to content

Commit dbe701f

Browse files
author
madlohe
committed
Prep for release 4.4.6
1 parent e402d9b commit dbe701f

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.4.6 - 2020-??-??
5+
4.4.6 - 2020-04-28
66
------------------
77
FIXES
88
* Fixed Map display in Internet Explorer 11 (#714) (Scott Wilkerson)

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.6-dev"
2447+
PKG_VERSION="4.4.6"
24482448
PKG_HOME_URL="https://www.nagios.org/"
2449-
PKG_REL_DATE="2020-04-23"
2449+
PKG_REL_DATE="2020-04-28"
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.6-dev"
13+
PKG_VERSION="4.4.6"
1414
PKG_HOME_URL="https://www.nagios.org/"
15-
PKG_REL_DATE="2020-04-23"
15+
PKG_REL_DATE="2020-04-28"
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
@@ -1,7 +1,7 @@
11
%global _hardened_build 1
22

33
Name: nagios
4-
Version: 4.4.6-dev
4+
Version: 4.4.6
55
Release: 1%{?dist}
66

77
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.4.6-dev
2+
PROJECT_NUMBER = 4.4.6
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.4.6-dev';
4+
$this_version = '4.4.6';
55
$this_year = '2020';
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 23, 2020</div>
148+
<div class="releasedate">April 28, 2020</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.6-dev';
4+
$this_version = '4.4.6';
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.6-dev"
28-
#define PROGRAM_MODIFICATION_DATE "2020-04-23"
27+
#define PROGRAM_VERSION "4.4.6"
28+
#define PROGRAM_MODIFICATION_DATE "2020-04-28"
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.6-dev
32+
Version: 4.4.6
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.6-dev
2+
Description=Nagios Core 4.4.6
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.6-dev
15+
CURRENTVERSION=4.4.6
1616

1717
# Last date
18-
LASTDATE=2020-04-23
18+
LASTDATE=2020-04-28
1919

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

0 commit comments

Comments
 (0)