Skip to content

Commit

Permalink
prepare release 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pgstef committed Nov 14, 2019
1 parent 5538abe commit deddb72
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ CONTRIBUTING
welcome.

VERSION
check_pgbackrest version 1.5, released on Mon Mar 18 2019.
check_pgbackrest version 1.6, released on Thu Nov 14 2019.

LICENSING
This program is open source, licensed under the PostgreSQL license. For
Expand Down
2 changes: 1 addition & 1 deletion README.pod
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ check_pgbackrest is an open project. Any contribution to improve it is welcome.

=head1 VERSION

check_pgbackrest version 1.5, released on Mon Mar 18 2019.
check_pgbackrest version 1.6, released on Thu Nov 14 2019.

=head1 LICENSING

Expand Down
6 changes: 3 additions & 3 deletions check_pgbackrest
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ undef @path;
# Reference to the output sub
my $output_fmt;

$VERSION = '1.6dev';
$VERSION = '1.6';
$PROGRAM = 'check_pgbackrest';

# Available services and descriptions.
Expand Down Expand Up @@ -885,7 +885,7 @@ sub check_wal_archives {
# Generate @warn_msg and @crit_msg with missing files (sorted and unique messages)
my @unique_warn_missing_file_msg = do { my %seen; grep { !$seen{$_}++ } @warn_missing_file_msg };
push @warn_msg, sort @unique_warn_missing_file_msg;

push @crit_missing_file_msg, @warn_missing_file_msg if @warn_missing_file_msg and @crit_missing_file_msg;
my @unique_crit_missing_file_msg = do { my %seen; grep { !$seen{$_}++ } @crit_missing_file_msg };
push @crit_msg, sort @unique_crit_missing_file_msg;
Expand Down Expand Up @@ -1040,7 +1040,7 @@ check_pgbackrest is an open project. Any contribution to improve it is welcome.
=head1 VERSION
check_pgbackrest version 1.5, released on Mon Mar 18 2019.
check_pgbackrest version 1.6, released on Thu Nov 14 2019.
=head1 LICENSING
Expand Down
6 changes: 4 additions & 2 deletions check_pgbackrest.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%global _tag REL1_5
%global _tag REL1_6

Name: nagios-plugins-pgbackrest
Version: 1.5
Version: 1.6
Release: 1
Summary: pgBackRest backup check plugin for Nagios
License: PostgreSQL
Expand Down Expand Up @@ -32,5 +32,7 @@ install -D -p -m 0755 check_pgbackrest %{buildroot}/%{_libdir}/nagios/plugins/ch
%doc README LICENSE

%changelog
* Thu Nov 14 2019 Stefan Fercot <[email protected]> 1.6-1
- new major release 1.6
* Mon Mar 18 2019 Stefan Fercot <[email protected]> 1.5-1
- new major release 1.5
2 changes: 1 addition & 1 deletion test/regress/expected/version.out
Original file line number Diff line number Diff line change
@@ -1 +1 @@
check_pgbackrest version 1.6dev, Perl 5.16.3
check_pgbackrest version 1.6, Perl 5.16.3

0 comments on commit deddb72

Please sign in to comment.