Skip to content

Commit d89b123

Browse files
committed
v1.0.2 release
1 parent 924e7da commit d89b123

File tree

8 files changed

+23
-8
lines changed

8 files changed

+23
-8
lines changed

Build.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ my $build = Module::Build->new(
2222
create_packlist => 1,
2323
#create_readme => 1,
2424
create_makefile_pl => 'traditional',
25-
dist_version => '1.0.1',
25+
dist_version => '1.0.2',
2626
dist_abstract => 'PostgreSQL multistate OCF resource agent for Pacemaker',
2727
dist_author => [
2828
'Mael Rimbault <[email protected]>',

debian/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
resource-agents-paf (1.0.2-1) unstable; urgency=low
2+
3+
* 1.0.2 minor release
4+
* fix: unknown argument --query when calling crm_master
5+
* fix: perl warning when master score has never been set on the master
6+
* change: remove misleading message in log file
7+
8+
-- Jehan-Guillaume (ioguix) de Rorthais <[email protected]> Wed, 25 May 2016 11:13:05 +0200
9+
110
resource-agents-paf (1.0.1-1) unstable; urgency=low
211

312
* 1.0.1 minor release

debian/files

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
resource-agents-paf_1.0.1-1_all.deb admin optional
1+
resource-agents-paf_1.0.2-1_all.deb admin optional

lib/OCF_Directories.pm.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ BEGIN {
9999
use Exporter;
100100
101101
102-
our \$VERSION = 'v1.0.1';
102+
our \$VERSION = 'v1.0.2';
103103
our \@ISA = ('Exporter');
104104
our \@EXPORT = qw(
105105
\$INITDIR

lib/OCF_Functions.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ use OCF_Directories;
9494
BEGIN {
9595
use Exporter;
9696

97-
our $VERSION = 'v1.0.1';
97+
our $VERSION = 'v1.0.2';
9898
our @ISA = ('Exporter');
9999
our @EXPORT = qw(
100100
$__OCF_ACTION

lib/OCF_ReturnCodes.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ use 5.008;
6060
BEGIN {
6161
use Exporter;
6262

63-
our $VERSION = 'v1.0.1';
63+
our $VERSION = 'v1.0.2';
6464
our @ISA = ('Exporter');
6565
our @EXPORT = qw(
6666
$OCF_SUCCESS

resource-agents-paf.spec

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
%global _tag v1.0.1
1+
%global _tag v1.0.2
22
%global _ocfroot /usr/lib/ocf
33
Name: resource-agents-paf
4-
Version: 1.0.1
4+
Version: 1.0.2
55
Release: 1
66
Summary: PostgreSQL resource agent for Pacemaker
77
License: PostgreSQL
@@ -41,6 +41,12 @@ rm -f "%{buildroot}"/usr/local/lib64/perl5/auto/PAF/.packlist
4141
%{_datadir}/resource-agents/ocft/configs/pgsqlms
4242

4343
%changelog
44+
* Wed May 25 2016 Jehan-Guillaume de Rorthais <[email protected]> - 1.0.2-1
45+
- 1.0.2 minor release
46+
- fix: unknown argument --query when calling crm_master
47+
- fix: perl warning when master score has never been set on the master
48+
- change: remove misleading message in log file
49+
4450
* Wed Apr 27 2016 Jehan-Guillaume de Rorthais <[email protected]> - 1.0.1-1
4551
- 1.0.1 minor release
4652
- fix: forbid the master to decrease its own score (gh #19)

script/pgsqlms

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use OCF_ReturnCodes;
2727
use OCF_Directories;
2828
use OCF_Functions;
2929

30-
our $VERSION = 'v1.0.1';
30+
our $VERSION = 'v1.0.2';
3131
our $PROGRAM = 'pgsqlms';
3232

3333
# OCF environment

0 commit comments

Comments
 (0)