diff --git a/ChangeLog b/ChangeLog index 9eec36fb94e..0517cf854fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,12 @@ Please check [doc/1-about.md]. ## What's New +### What's New in Version 2.4.10 + +#### Bugfixes + +* Bug 11812 (Checker): Checker component doesn't execute any checks for command_endpoint + ### What's New in Version 2.4.9 #### Changes diff --git a/doc/1-about.md b/doc/1-about.md index 33c3745cf1d..b9d4e16cfc6 100644 --- a/doc/1-about.md +++ b/doc/1-about.md @@ -54,6 +54,12 @@ More details in the [Icinga FAQ](https://www.icinga.org/icinga/faq/). ## What's New +### What's New in Version 2.4.10 + +#### Bugfixes + +* Bug [11812](https://dev.icinga.org/issues/11812 "Bug 11812") (Checker): Checker component doesn't execute any checks for command_endpoint + ### What's New in Version 2.4.9 #### Changes diff --git a/icinga2.nuspec b/icinga2.nuspec index 6ad7e265b79..86b1957dc0b 100755 --- a/icinga2.nuspec +++ b/icinga2.nuspec @@ -6,7 +6,7 @@ icinga2 Icinga2 - 2.4.9 + 2.4.10 2016 - The Icinga Project Icinga Development Team icinga2 - Monitoring Agent for Windows diff --git a/icinga2.spec b/icinga2.spec index 2ec770909bc..10fc340f4e3 100644 --- a/icinga2.spec +++ b/icinga2.spec @@ -66,7 +66,7 @@ Summary: Network monitoring application Name: icinga2 -Version: 2.4.9 +Version: 2.4.10 Release: %{revision}%{?dist} License: GPL-2.0+ Group: Applications/System diff --git a/tools/chocolateyInstall.ps1 b/tools/chocolateyInstall.ps1 index 2d0013b33aa..d622a31e3b8 100755 --- a/tools/chocolateyInstall.ps1 +++ b/tools/chocolateyInstall.ps1 @@ -1,7 +1,7 @@ $packageName = 'icinga2' $installerType = 'msi' -$url32 = 'http://packages.icinga.org/windows/Icinga2-v2.4.9-x86.msi' -$url64 = 'http://packages.icinga.org/windows/Icinga2-v2.4.9-x86_64.msi' +$url32 = 'http://packages.icinga.org/windows/Icinga2-v2.4.10-x86.msi' +$url64 = 'http://packages.icinga.org/windows/Icinga2-v2.4.10-x86_64.msi' $silentArgs = '/qn /norestart' $validExitCodes = @(0)