Skip to content

Commit

Permalink
v1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ioguix committed May 25, 2016
1 parent 924e7da commit d89b123
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ my $build = Module::Build->new(
create_packlist => 1,
#create_readme => 1,
create_makefile_pl => 'traditional',
dist_version => '1.0.1',
dist_version => '1.0.2',
dist_abstract => 'PostgreSQL multistate OCF resource agent for Pacemaker',
dist_author => [
'Mael Rimbault <[email protected]>',
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
resource-agents-paf (1.0.2-1) unstable; urgency=low

* 1.0.2 minor release
* fix: unknown argument --query when calling crm_master
* fix: perl warning when master score has never been set on the master
* change: remove misleading message in log file

-- Jehan-Guillaume (ioguix) de Rorthais <[email protected]> Wed, 25 May 2016 11:13:05 +0200

resource-agents-paf (1.0.1-1) unstable; urgency=low

* 1.0.1 minor release
Expand Down
2 changes: 1 addition & 1 deletion debian/files
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resource-agents-paf_1.0.1-1_all.deb admin optional
resource-agents-paf_1.0.2-1_all.deb admin optional
2 changes: 1 addition & 1 deletion lib/OCF_Directories.pm.PL
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ BEGIN {
use Exporter;
our \$VERSION = 'v1.0.1';
our \$VERSION = 'v1.0.2';
our \@ISA = ('Exporter');
our \@EXPORT = qw(
\$INITDIR
Expand Down
2 changes: 1 addition & 1 deletion lib/OCF_Functions.pm
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ use OCF_Directories;
BEGIN {
use Exporter;

our $VERSION = 'v1.0.1';
our $VERSION = 'v1.0.2';
our @ISA = ('Exporter');
our @EXPORT = qw(
$__OCF_ACTION
Expand Down
2 changes: 1 addition & 1 deletion lib/OCF_ReturnCodes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ use 5.008;
BEGIN {
use Exporter;

our $VERSION = 'v1.0.1';
our $VERSION = 'v1.0.2';
our @ISA = ('Exporter');
our @EXPORT = qw(
$OCF_SUCCESS
Expand Down
10 changes: 8 additions & 2 deletions resource-agents-paf.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%global _tag v1.0.1
%global _tag v1.0.2
%global _ocfroot /usr/lib/ocf
Name: resource-agents-paf
Version: 1.0.1
Version: 1.0.2
Release: 1
Summary: PostgreSQL resource agent for Pacemaker
License: PostgreSQL
Expand Down Expand Up @@ -41,6 +41,12 @@ rm -f "%{buildroot}"/usr/local/lib64/perl5/auto/PAF/.packlist
%{_datadir}/resource-agents/ocft/configs/pgsqlms

%changelog
* Wed May 25 2016 Jehan-Guillaume de Rorthais <[email protected]> - 1.0.2-1
- 1.0.2 minor release
- fix: unknown argument --query when calling crm_master
- fix: perl warning when master score has never been set on the master
- change: remove misleading message in log file

* Wed Apr 27 2016 Jehan-Guillaume de Rorthais <[email protected]> - 1.0.1-1
- 1.0.1 minor release
- fix: forbid the master to decrease its own score (gh #19)
Expand Down
2 changes: 1 addition & 1 deletion script/pgsqlms
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use OCF_ReturnCodes;
use OCF_Directories;
use OCF_Functions;

our $VERSION = 'v1.0.1';
our $VERSION = 'v1.0.2';
our $PROGRAM = 'pgsqlms';

# OCF environment
Expand Down

0 comments on commit d89b123

Please sign in to comment.