Skip to content

Commit

Permalink
Release version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hubert depesz Lubaczewski committed Apr 1, 2013
1 parent eac7b03 commit 2bd3568
Show file tree
Hide file tree
Showing 31 changed files with 39 additions and 31 deletions.
4 changes: 2 additions & 2 deletions META.json
Expand Up @@ -2,7 +2,7 @@
"name": "omnipitr", "name": "omnipitr",
"abstract": "Advanced WAL File / Backup Management Tools", "abstract": "Advanced WAL File / Backup Management Tools",
"description": "OmniPITR provides a set of tools for managing PITR, including archive_commands, restore_commands, and creating backups from either the master or slave server", "description": "OmniPITR provides a set of tools for managing PITR, including archive_commands, restore_commands, and creating backups from either the master or slave server",
"version": "1.0.0", "version": "1.1.0",
"maintainer": "Robert Treat <rob@xzilla.net>", "maintainer": "Robert Treat <rob@xzilla.net>",
"license": "postgresql", "license": "postgresql",
"release_status": "stable", "release_status": "stable",
Expand Down Expand Up @@ -32,7 +32,7 @@
"abstract": "Advanced WAL File / Backup Management Tools", "abstract": "Advanced WAL File / Backup Management Tools",
"file": "bin/omnipitr-archive", "file": "bin/omnipitr-archive",
"docfile": "doc/howto.pod", "docfile": "doc/howto.pod",
"version": "1.0.0" "version": "1.1.0"
} }
} }
} }
8 changes: 8 additions & 0 deletions doc/changes.pod
Expand Up @@ -2,6 +2,14 @@


=encoding utf8 =encoding utf8


=head2 2013-04-01

=over

=item * Release of version 1.1.0, including all changes since release 1.0.0

=back

=head2 2012-12-11 =head2 2012-12-11


=over =over
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Log.pm
Expand Up @@ -9,7 +9,7 @@ use Data::Dumper;
use POSIX qw(strftime floor); use POSIX qw(strftime floor);
use IO::File; use IO::File;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';


BEGIN { BEGIN {
eval { use Time::HiRes qw( time ); }; eval { use Time::HiRes qw( time ); };
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program.pm
Expand Up @@ -13,7 +13,7 @@ use File::Spec;
use Pod::Usage; use Pod::Usage;
use Carp; use Carp;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';


=head1 new() =head1 new()
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Archive.pm
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Archive;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program ); use base qw( OmniPITR::Program );


use Carp; use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Backup.pm
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Backup;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program ); use base qw( OmniPITR::Program );


use Config; use Config;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Backup/Master.pm
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Backup::Master;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Backup ); use base qw( OmniPITR::Program::Backup );


use Carp; use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Backup/Slave.pm
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Backup::Slave;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Backup ); use base qw( OmniPITR::Program::Backup );


use File::Spec; use File::Spec;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Cleanup.pm
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Cleanup;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program ); use base qw( OmniPITR::Program );


use Carp; use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor.pm
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Monitor;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program ); use base qw( OmniPITR::Program );


use Carp; use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check.pm
Expand Up @@ -4,7 +4,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';


=head1 NAME =head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check/Archive_Queue.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Check ); use base qw( OmniPITR::Program::Monitor::Check );


use Data::Dumper; use Data::Dumper;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check/Current_Archive_Time.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Check ); use base qw( OmniPITR::Program::Monitor::Check );


use Time::HiRes qw( time ); use Time::HiRes qw( time );
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check/Current_Restore_Time.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Check ); use base qw( OmniPITR::Program::Monitor::Check );


use Time::HiRes qw( time ); use Time::HiRes qw( time );
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check/Dump_State.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Check ); use base qw( OmniPITR::Program::Monitor::Check );


use Data::Dumper; use Data::Dumper;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check/Errors.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Check ); use base qw( OmniPITR::Program::Monitor::Check );


use Getopt::Long qw( :config no_ignore_case ); use Getopt::Long qw( :config no_ignore_case );
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check/Last_Archive_Age.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Check ); use base qw( OmniPITR::Program::Monitor::Check );


use Time::HiRes qw( time ); use Time::HiRes qw( time );
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check/Last_Backup_Age.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Check ); use base qw( OmniPITR::Program::Monitor::Check );


use Time::HiRes qw( time ); use Time::HiRes qw( time );
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Check/Last_Restore_Age.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Check ); use base qw( OmniPITR::Program::Monitor::Check );


use Time::HiRes qw( time ); use Time::HiRes qw( time );
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Parser.pm
Expand Up @@ -5,7 +5,7 @@ use Carp;
use Data::Dumper; use Data::Dumper;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';


=head1 NAME =head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Parser/Archive.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Parser ); use base qw( OmniPITR::Program::Monitor::Parser );


=head1 Parser/Archvie state data structure =head1 Parser/Archvie state data structure
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Parser/Backup.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Parser ); use base qw( OmniPITR::Program::Monitor::Parser );


=head1 Backup_Slave/Backup_Master *base* state data structure =head1 Backup_Slave/Backup_Master *base* state data structure
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Parser/Backup_Master.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Parser::Backup ); use base qw( OmniPITR::Program::Monitor::Parser::Backup );


1; 1;
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Parser/Backup_Slave.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Parser::Backup ); use base qw( OmniPITR::Program::Monitor::Parser::Backup );


1; 1;
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor/Parser/Restore.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp; use Carp;
use English qw( -no_match_vars ); use English qw( -no_match_vars );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program::Monitor::Parser ); use base qw( OmniPITR::Program::Monitor::Parser );


=head1 Parser/Restore state data structure =head1 Parser/Restore state data structure
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Restore.pm
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Restore;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program ); use base qw( OmniPITR::Program );


use Carp; use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Synch.pm
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Synch;
use strict; use strict;
use warnings; use warnings;


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
use base qw( OmniPITR::Program ); use base qw( OmniPITR::Program );


use Carp qw( croak ); use Carp qw( croak );
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Tools.pm
Expand Up @@ -7,7 +7,7 @@ use Digest::MD5;
use File::Temp qw( tempfile ); use File::Temp qw( tempfile );
use base qw( Exporter ); use base qw( Exporter );


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';
our @EXPORT_OK = qw( file_md5sum run_command ext_for_compression ); our @EXPORT_OK = qw( file_md5sum run_command ext_for_compression );
our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK ); our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK );


Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Tools/CommandPiper.pm
Expand Up @@ -9,7 +9,7 @@ OmniPITR::Tools::CommandPiper - Class for building complex pipe-based shell comm
=cut =cut


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';


=head1 SYNOPSIS =head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Tools/ParallelSystem.pm
Expand Up @@ -13,7 +13,7 @@ OmniPITR::Tools::ParallelSystem - Class for running multiple shell commands in p
=cut =cut


our $VERSION = '1.0.0'; our $VERSION = '1.1.0';


=head1 SYNOPSIS =head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion t/00-load.t
Expand Up @@ -34,4 +34,4 @@ BEGIN {
use_ok( 'OmniPITR::Tools::ParallelSystem' ) || print "Bail out on OmniPITR::Tools::ParallelSystem\n"; use_ok( 'OmniPITR::Tools::ParallelSystem' ) || print "Bail out on OmniPITR::Tools::ParallelSystem\n";
} }


diag( "Testing Pg::SQL::Parser $Pg::SQL::Parser::VERSION, Perl $], $^X" ); diag( "Testing OmniPITR $OmniPITR::Program::VERSION, Perl $], $^X" );

0 comments on commit 2bd3568

Please sign in to comment.