Skip to content

Commit

Permalink
Release version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hubert depesz Lubaczewski committed Jun 30, 2011
1 parent d110cd3 commit 92dfa95
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 11 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "omnipitr",
"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",
"version": "0.1.1",
"version": "0.1.2",
"maintainer": "Robert Treat <rob@xzilla.net>",
"license": "postgresql",
"release_status": "stable",
Expand Down Expand Up @@ -32,7 +32,7 @@
"abstract": "Advanced WAL File / Backup Management Tools",
"file": "bin/omnipitr-archive",
"docfile": "doc/howto.pod",
"version": "0.1.1"
"version": "0.1.2"
}
}
}
10 changes: 10 additions & 0 deletions doc/changes.pod
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
=head1 OmniPITR

=head2 2011-06-30

=over

=item * Release version 0.1.2

=item * Fixed bug with handling multiple local destinations for backups.

=back

=head2 2011-06-17

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

our $VERSION = '0.1.1';
our $VERSION = '0.1.2';

BEGIN {
eval { use Time::HiRes qw( time ); };
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use File::Path qw( mkpath rmtree );
use File::Spec;
use Carp;

our $VERSION = '0.1.1';
our $VERSION = '0.1.2';

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

our $VERSION = '0.1.1';
our $VERSION = '0.1.2';
use base qw( OmniPITR::Program );

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

our $VERSION = '0.1.1';
our $VERSION = '0.1.2';
use base qw( OmniPITR::Program );

use File::Spec;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Backup/Master.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Backup::Master;
use strict;
use warnings;

our $VERSION = '0.1.1';
our $VERSION = '0.1.2';
use base qw( OmniPITR::Program::Backup );

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

our $VERSION = '0.1.1';
our $VERSION = '0.1.2';
use base qw( OmniPITR::Program::Backup );

use File::Spec;
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Monitor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package OmniPITR::Program::Monitor;
use strict;
use warnings;

our $VERSION = '0.1.1';
our $VERSION = '0.1.2';
1;

2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Restore.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package OmniPITR::Program::Restore;
use strict;
use warnings;

our $VERSION = '0.1.1';
our $VERSION = '0.1.2';
use base qw( OmniPITR::Program );

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

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

Expand Down

0 comments on commit 92dfa95

Please sign in to comment.