Skip to content

Commit c75746c

Browse files
authored
Merge pull request #83 from blogh/Release_1.1.0
v1.1.0 release
2 parents 43969be + 9ad03fc commit c75746c

File tree

8 files changed

+20
-11
lines changed

8 files changed

+20
-11
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.1_beta1',
25+
dist_version => '1.1.0',
2626
dist_abstract => 'PostgreSQL multistate OCF resource agent for Pacemaker',
2727
dist_author => [
2828
'Mael Rimbault <mael.rimbault@dalibo.com>',

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
# PAF v1.1 beta1
1+
# PAF v1.1.0
22

3-
Release date: 2016-12-04
3+
Release date: 2017-03-14
44

5-
* 1.1 beta1 release
65
* fix: compatibility with PostrgeSQL 9.6, YanChii
76
* fix: do not use crm_node --partition to discover resources, ioguix
87
* fix: unknown argument --query when calling crm_master, ioguix
98
* fix: perl warning when master score has never been set on the master, ioguix
109
* fix: remove wrong info message during post-promote notify, ioguix
11-
* fix: race condition when setting attributes during actions, reported by Guillaume Lalarge, fixed by ioguix
10+
* fix: race condition when setting attributes during actions, reported by Guillaume Lelarge, fixed by ioguix
1211
* fix: bug where pgport and pghost where ignored in "_query", reported by nnn-dev, fixed by ioguix
1312
* fix: use same role name than the system_user to connect, reported by nnn-dev, fixed by ioguix
1413
* fix: wrap crm_master calls in sub to make them synchronous, ioguix

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
resource-agents-paf (1.1.0-1) unstable; urgency=low
2+
3+
* 1.1.0 major release
4+
* no changes since 1.1_beta1.
5+
6+
-- Benoit Lobréau <blo.talkto@gmail.com> Tue, 14 Mar 2017 13:00:00 +0100
7+
18
resource-agents-paf (1.1~beta1-1) unstable; urgency=low
29

310
* 1.1_beta1 beta release

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.1_beta1';
102+
our \$VERSION = 'v1.1.0';
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.1_beta1';
97+
our $VERSION = 'v1.1.0';
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.1_beta1';
63+
our $VERSION = 'v1.1.0';
6464
our @ISA = ('Exporter');
6565
our @EXPORT = qw(
6666
$OCF_SUCCESS

resource-agents-paf.spec

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

4343
%changelog
44+
* Tue Mar 14 2017 Benoit Lobréau <blo.talkto@gmail.com> - 1.1.0-1
45+
- 1.1.0 major release
46+
4447
* Sun Dec 04 2016 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 1.1beta1-1
4548
- 1.1_beta1 beta release
4649

script/pgsqlms

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

31-
our $VERSION = 'v1.1_beta1';
31+
our $VERSION = 'v1.1.0';
3232
our $PROGRAM = 'pgsqlms';
3333

3434
# OCF environment

0 commit comments

Comments
 (0)