Skip to content
This repository was archived by the owner on Jan 15, 2019. It is now read-only.

Commit 245a15d

Browse files
author
Michael Friedrich
committed
Release version 1.13.1
1 parent 67cc8d2 commit 245a15d

File tree

9 files changed

+28
-15
lines changed

9 files changed

+28
-15
lines changed

Changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ NEWS
1919
* This is the Icinga 1.x development branch. If you are looking for Icinga 2.x
2020
please check https://www.icinga.org/icinga2
2121

22+
1.13.1 - 05/04/2015
23+
24+
NOTES
25+
26+
You may still use 'broker_module' configuration inside icinga.cfg. It just
27+
has been removed from the sample configuration and will log a deprecation
28+
warning on startup.
29+
30+
FIXES
31+
32+
* Bug #8986: wrong fd initilization preventing checks using file descriptors
33+
34+
2235
1.13.0 - 30/03/2015
2336

2437
CHANGES

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ MKDIR=/bin/mkdir
8989
###############################
9090
# Global
9191
###############################
92-
ICINGA_VERSION=1.13.0
92+
ICINGA_VERSION=1.13.1
9393

9494
CP=@CP@
9595

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2512,9 +2512,9 @@ ac_config_headers="$ac_config_headers include/config.h"
25122512
25132513
25142514
PKG_NAME=icinga-core
2515-
PKG_VERSION="1.13.0"
2515+
PKG_VERSION="1.13.1"
25162516
PKG_HOME_URL="http://www.icinga.org/"
2517-
PKG_REL_DATE="03-13-2015"
2517+
PKG_REL_DATE="04-05-2015"
25182518
25192519
ac_aux_dir=
25202520
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ AC_CONFIG_HEADER(include/config.h)
99
AC_PREFIX_DEFAULT(/usr/local/icinga)
1010

1111
PKG_NAME=icinga-core
12-
PKG_VERSION="1.13.0"
12+
PKG_VERSION="1.13.1"
1313
PKG_HOME_URL="http://www.icinga.org/"
14-
PKG_REL_DATE="03-13-2015"
14+
PKG_REL_DATE="04-05-2015"
1515

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

html/main.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
</div>
1919

2020
<div id="currentversioninfo">
21-
<div class="version">Version 1.13.0</div>
22-
<div class="releasedate">März 13, 2015</div>
23-
<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.13.0</a></div>
21+
<div class="version">Version 1.13.1</div>
22+
<div class="releasedate">April 05, 2015</div>
23+
<div class="whatsnew"><a href="docs/en/whatsnew.html">Read what's new in Icinga 1.13.1</a></div>
2424
</div>
2525

2626
<div id="developer">

icinga.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
Summary: Open Source host, service and network monitoring program
5656
Name: icinga
57-
Version: 1.13.0
57+
Version: 1.13.1
5858
Release: %{revision}%{?dist}
5959
License: GPLv2
6060
Group: Applications/System

include/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#define PROGRAM_NAME "Icinga"
2828
#define PROGRAM_NAME_UC "ICINGA"
2929
#define PROGRAM_NAME_LC "icinga"
30-
#define PROGRAM_VERSION "1.13.0"
31-
#define PROGRAM_MODIFICATION_DATE "03-13-2015"
30+
#define PROGRAM_VERSION "1.13.1"
31+
#define PROGRAM_MODIFICATION_DATE "04-05-2015"
3232

3333
/*#define DEBUG_CHECK_IPC 1 */
3434
/*#define DEBUG_CHECK_IPC2 1*/

module/idoutils/include/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#define LOG2IDO_NAME "LOG2IDO"
2323

2424
/* only one space for update-version matching */
25-
#define IDO_DATE "03-13-2015"
26-
#define IDO_VERSION "1.13.0"
25+
#define IDO_DATE "04-05-2015"
26+
#define IDO_VERSION "1.13.1"
2727

2828
#define IDO_SCHEMA_VERSION "1.13.0"
2929

update-version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ else
1010
fi
1111

1212
# Current version number
13-
CURRENTVERSION=1.13.0
13+
CURRENTVERSION=1.13.1
1414

1515
# Last date
16-
LASTDATE=03-13-2015
16+
LASTDATE=04-05-2015
1717

1818
if [ "x$1" = "x" ]
1919
then

0 commit comments

Comments
 (0)