Skip to content

Commit 0090d8c

Browse files
committed
Release v2.2.1
1 parent 43993cb commit 0090d8c

8 files changed

+20
-11
lines changed

Diff for: Build.PL

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ my $build = Module::Build->new(
2424
create_packlist => 1,
2525
#create_readme => 1,
2626
create_makefile_pl => 'traditional',
27-
dist_version => '2.2.1_rc1',
28-
release_status => 'testing', # stable or testing
27+
dist_version => '2.2.1',
28+
release_status => 'stable', # stable or testing
2929
dist_abstract => 'PostgreSQL multistate OCF resource agent for Pacemaker',
3030
dist_author => [
3131
'Mael Rimbault <[email protected]>',

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# PAF v2.2.1 rc1
1+
# PAF v2.2.1
22

3-
Release date: 2019-01-22
3+
Release date: 2019-01-31
44

55
__WARNING__: This version is only compatible with at least Pacemaker 1.1.13 using
66
a corosync 2.x stack.

Diff for: debian/changelog

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
resource-agents-paf (2.2.1-1) unstable; urgency=low
2+
3+
* 2.2.1 minor release
4+
5+
-- Jehan-Guillaume (ioguix) de Rorthais <[email protected]> Thu, 31 Jan 2019 14:00:00 +0100
6+
17
resource-agents-paf (2.2.1~rc1-1) unstable; urgency=low
28

39
* 2.2.1_rc1 release candidate
410

5-
-- Jehan-Guillaume (ioguix) de Rorthais <[email protected]> Tue, 22 Jan 2019 22:00:00 +0200
11+
-- Jehan-Guillaume (ioguix) de Rorthais <[email protected]> Tue, 22 Jan 2019 22:00:00 +0100
612

713
resource-agents-paf (2.2.0-2) unstable; urgency=low
814

Diff for: lib/OCF_Directories.pm.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use Config;
77
use File::Spec;
88
use Storable;
99

10-
my $VERSION = 'v2.2.1_rc1';
10+
my $VERSION = 'v2.2.1';
1111

1212
my $_ocf_dirs = File::Spec->tmpdir."/ocf_dirs.bin";
1313

Diff for: lib/OCF_Functions.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ use OCF_Directories;
9696
BEGIN {
9797
use Exporter;
9898

99-
our $VERSION = 'v2.2.1_rc1';
99+
our $VERSION = 'v2.2.1';
100100
our @ISA = ('Exporter');
101101
our @EXPORT = qw(
102102
$__OCF_ACTION

Diff for: lib/OCF_ReturnCodes.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ use 5.008;
6060
BEGIN {
6161
use Exporter;
6262

63-
our $VERSION = 'v2.2.1_rc1';
63+
our $VERSION = 'v2.2.1';
6464
our @ISA = ('Exporter');
6565
our @EXPORT = qw(
6666
$OCF_SUCCESS

Diff for: resource-agents-paf.spec

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
%global _tag 2.2.1_rc1
1+
%global _tag 2.2.1
22
%global _ocfroot /usr/lib/ocf
33
Name: resource-agents-paf
4-
Version: 2.2.1~rc1
4+
Version: 2.2.1
55
Release: 1
66
Summary: PostgreSQL resource agent for Pacemaker
77
License: PostgreSQL
@@ -42,6 +42,9 @@ find "%{buildroot}" -type f -name .packlist -delete
4242
%{_datadir}/resource-agents/ocft/configs/pgsqlms
4343

4444
%changelog
45+
* Thu Jan 31 2019 Jehan-Guillaume de Rorthais <[email protected]> - 2.2.1-1
46+
- 2.2.1 minor release
47+
4548
* Tue Jan 22 2019 Jehan-Guillaume de Rorthais <[email protected]> - 2.2.1rc1-1
4649
- 2.2.1_rc1 release candidate
4750

Diff for: script/pgsqlms

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use OCF_ReturnCodes;
3636
use OCF_Directories;
3737
use OCF_Functions;
3838

39-
our $VERSION = 'v2.2.1_rc1';
39+
our $VERSION = 'v2.2.1';
4040
our $PROGRAM = 'pgsqlms';
4141

4242
# OCF environment

0 commit comments

Comments
 (0)