diff options
-rw-r--r-- | Build.PL | 3 | ||||
-rw-r--r-- | Changelog | 3 | ||||
-rwxr-xr-x | bin/icli | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -15,6 +15,9 @@ my $build = Module::Build->subclass( 'Test::Pod' => 0, 'Test::Command' => 0, }, + configure_requires => { + 'Module::Build' => 0, + }, dist_name => 'icli', dist_version_from => 'bin/icli', license => 'unrestricted', @@ -1,8 +1,9 @@ -git HEAD +icli 0.46 - Sun Sep 29 2013 * Fix !o filter not matching pending services * Add p filter (pending hosts/services) * Show pending hosts/services with --overview + * Remove Date::Format dependency (now uses POSIX::strftime) icli 0.45 - Tue Sep 17 2013 @@ -16,7 +16,7 @@ use POSIX qw(strftime); use Term::ANSIColor; use Term::Size; -our $VERSION = '0.45'; +our $VERSION = '0.46'; my ( $cache, $config, $data, $extra ); my $config_file = '/var/cache/icinga/objects.cache'; @@ -1047,7 +1047,7 @@ B<icli> [B<-v>|B<-vv>] [B<-z> I<filter>] [B<-h> I<hosts>] [B<-g> I<hostgroups>] =head1 VERSION -version 0.45 +version 0.46 =head1 DESCRIPTION |