Skip to content

Commit

Permalink
Prep for release 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
John C. Frickson committed Aug 18, 2015
1 parent 2379829 commit 5682db0
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 14 deletions.
3 changes: 2 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Nagios Core 4 Change Log
########################

4.1.0 - xx/xx/xxxx
4.1.0 - 08/18/2015
------------------
ENHANCEMENTS
* Promoted JSON CGIs to released status (Eric Stanley)
Expand All @@ -12,6 +12,7 @@ ENHANCEMENTS
* httpd.conf doesn't support Apache versions > 2.3 (DanielB / John Frickson)

FIXES
* Fix for not all service dependencies created (John Frickson)
* Fix SIGSEGV with empty custom variable (orbis / John Frickson)
* Fix contact macros in environment variables (dvoryanchikov)
* Fixed host's current attempt goes to 1 after going to hard state (John Frickson)
Expand Down
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1873,9 +1873,9 @@ ac_config_headers="$ac_config_headers include/config.h lib/snprintf.h lib/iobrok
PKG_NAME=nagios
PKG_VERSION="4.1.0rc3"
PKG_VERSION="4.1.0"
PKG_HOME_URL="https://www.nagios.org/"
PKG_REL_DATE="08-11-2015"
PKG_REL_DATE="08-18-2015"
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
Expand Down
4 changes: 2 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ AC_PREFIX_DEFAULT(/usr/local/nagios)

PKG_NAME=nagios

PKG_VERSION="4.1.0rc3"
PKG_VERSION="4.1.0"
PKG_HOME_URL="https://www.nagios.org/"
PKG_REL_DATE="08-11-2015"
PKG_REL_DATE="08-18-2015"

dnl Figure out how to invoke "install" and what install options to use.
AC_PROG_INSTALL
Expand Down
2 changes: 1 addition & 1 deletion doxy.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_NAME = Nagios
PROJECT_NUMBER = 4.1.0rc3
PROJECT_NUMBER = 4.1.0
PROJECT_BRIEF = "Dev docs for Nagios core and neb-module hackers"

INPUT = lib/ docs/
Expand Down
4 changes: 2 additions & 2 deletions html/main.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
include_once(dirname(__FILE__).'/includes/utils.inc.php');

$this_version = '4.1.0rc3';
$this_version = '4.1.0';
$this_year = '2015';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Expand Down Expand Up @@ -129,7 +129,7 @@ function setCoreStatusHTML(image, text) {
<div id="currentversioninfo">
<div class="product">Nagios<sup><span style="font-size: small;">&reg;</span></sup> Core<sup><span style="font-size: small;">&trade;</span></sup></div>
<div class="version">Version <?php echo $this_version; ?></div>
<div class="releasedate">August 11, 2015</div>
<div class="releasedate">August 18, 2015</div>
<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>
</div>

Expand Down
2 changes: 1 addition & 1 deletion html/side.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
include_once(dirname(__FILE__).'/includes/utils.inc.php');

$this_version = '4.1.0rc3';
$this_version = '4.1.0';
$link_target = 'main';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Expand Down
4 changes: 2 additions & 2 deletions include/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

#include "shared.h"

#define PROGRAM_VERSION "4.1.0rc3"
#define PROGRAM_MODIFICATION_DATE "08-11-2015"
#define PROGRAM_VERSION "4.1.0"
#define PROGRAM_MODIFICATION_DATE "08-18-2015"

NAGIOS_BEGIN_DECL

Expand Down
2 changes: 1 addition & 1 deletion nagios.spec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

Summary: Open Source host, service and network monitoring program
Name: nagios
Version: 4.1.0rc3
Version: 4.1.0
Release: 2%{?dist}
License: GPL
Group: Applications/System
Expand Down
4 changes: 2 additions & 2 deletions update-version
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ else
fi

# Current version number
CURRENTVERSION=4.1.0rc3
CURRENTVERSION=4.1.0

# Last date
LASTDATE=08-11-2015
LASTDATE=08-18-2015

if [ "x$1" = "x" ]
then
Expand Down

0 comments on commit 5682db0

Please sign in to comment.