Skip to content

Commit 14817d0

Browse files
committed
v2.2.0 release
1 parent 31c5cab commit 14817d0

8 files changed

+20
-10
lines changed

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_rc1',
28-
release_status => 'testing', # stable or testing
27+
dist_version => '2.2.0',
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]>',

CHANGELOG.md

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

3-
Release date: WIP
3+
Release date: 2017-09-12
44

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

debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
resource-agents-paf (2.2.0-1) unstable; urgency=low
2+
3+
* 2.2.0 major release
4+
* see CHANGELOG.md
5+
6+
-- Jehan-Guillaume (ioguix) de Rorthais <[email protected]> Tue, 12 Sep 2017 10:00:00 +0200
7+
18
resource-agents-paf (2.2~rc1-1) unstable; urgency=low
29

310
* 2.2_rc1 release candidate

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_rc1';
10+
my $VERSION = 'v2.2.0';
1111

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

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_rc1';
99+
our $VERSION = 'v2.2.0';
100100
our @ISA = ('Exporter');
101101
our @EXPORT = qw(
102102
$__OCF_ACTION

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_rc1';
63+
our $VERSION = 'v2.2.0';
6464
our @ISA = ('Exporter');
6565
our @EXPORT = qw(
6666
$OCF_SUCCESS

resource-agents-paf.spec

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
%global _tag 2.2_rc1
1+
%global _tag 2.2.0
22
%global _ocfroot /usr/lib/ocf
33
Name: resource-agents-paf
4-
Version: 2.2~rc1
4+
Version: 2.2.0
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+
* Tue Sep 12 2017 Jehan-Guillaume de Rorthais <[email protected]> - 2.2.0-1
46+
- 2.2.0 major release
47+
4548
* Tue Aug 29 2017 Jehan-Guillaume de Rorthais <[email protected]> - 2.2rc1-1
4649
- 2.2_rc1 release candidate
4750

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_rc1';
39+
our $VERSION = 'v2.2.0';
4040
our $PROGRAM = 'pgsqlms';
4141

4242
# OCF environment

0 commit comments

Comments
 (0)