Skip to content

Commit 7457e78

Browse files
committed
v2.2_rc1 release
1 parent 37000c1 commit 7457e78

File tree

8 files changed

+23
-11
lines changed

8 files changed

+23
-11
lines changed

Build.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ my $build = Module::Build->new(
2424
create_packlist => 1,
2525
#create_readme => 1,
2626
create_makefile_pl => 'traditional',
27-
dist_version => '2.2_beta1',
27+
dist_version => '2.2_rc1',
2828
release_status => 'testing', # stable or testing
2929
dist_abstract => 'PostgreSQL multistate OCF resource agent for Pacemaker',
3030
dist_author => [

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PAF v2.2 beta1
1+
# PAF v2.2 rc1
22

33
Release date: WIP
44

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
resource-agents-paf (2.2~rc1-1) unstable; urgency=low
2+
3+
* 2.2_rc1 release candidate
4+
* no change since beta1
5+
6+
-- Jehan-Guillaume (ioguix) de Rorthais <jgdr@dalibo.com> Tue, 29 Aug 2017 23:15:00 +0200
7+
18
resource-agents-paf (2.2~beta1-3) unstable; urgency=medium
29

310
* d/control:

lib/OCF_Directories.pm.PL

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ use Config;
77
use File::Spec;
88
use Storable;
99

10+
my $VERSION = 'v2.2_rc1';
11+
1012
my $_ocf_dirs = File::Spec->tmpdir."/ocf_dirs.bin";
1113

1214
die "Could not find ocf_firs temp file generated by Build.PL!"
@@ -99,7 +101,7 @@ BEGIN {
99101
use Exporter;
100102
101103
102-
our \$VERSION = 'v2.2_beta1';
104+
our \$VERSION = '$VERSION';
103105
our \@ISA = ('Exporter');
104106
our \@EXPORT = qw(
105107
\$INITDIR

lib/OCF_Functions.pm

Lines changed: 1 addition & 1 deletion
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_beta1';
99+
our $VERSION = 'v2.2_rc1';
100100
our @ISA = ('Exporter');
101101
our @EXPORT = qw(
102102
$__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 = 'v2.2_beta1';
63+
our $VERSION = 'v2.2_rc1';
6464
our @ISA = ('Exporter');
6565
our @EXPORT = qw(
6666
$OCF_SUCCESS

resource-agents-paf.spec

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
%global _tag 2.2_beta1
1+
%global _tag 2.2_rc1
22
%global _ocfroot /usr/lib/ocf
33
Name: resource-agents-paf
4-
Version: 2.2~beta1
5-
Release: 2
4+
Version: 2.2~rc1
5+
Release: 1
66
Summary: PostgreSQL resource agent for Pacemaker
77
License: PostgreSQL
88
Group: Applications/Databases
@@ -42,6 +42,9 @@ find "%{buildroot}" -type f -name .packlist -delete
4242
%{_datadir}/resource-agents/ocft/configs/pgsqlms
4343

4444
%changelog
45+
* Tue Aug 29 2017 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 2.2rc1-1
46+
- 2.2_rc1 release candidate
47+
4548
* Mon Jun 26 2017 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 2.2beta1-2
4649
- add dependencies on Pacemaker and Corosync versions
4750

@@ -52,10 +55,10 @@ find "%{buildroot}" -type f -name .packlist -delete
5255
- 2.1.0 major release
5356

5457
* Sat Dec 17 2016 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 2.1rc2-1
55-
- 2.1_rc2 beta release
58+
- 2.1_rc2 release candidate
5659

5760
* Sun Dec 11 2016 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 2.1rc1-1
58-
- 2.1_rc1 beta release
61+
- 2.1_rc1 release candidate
5962

6063
* Sun Dec 04 2016 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 2.1beta1-1
6164
- 2.1_beta1 beta release

script/pgsqlms

Lines changed: 1 addition & 1 deletion
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_beta1';
39+
our $VERSION = 'v2.2_rc1';
4040
our $PROGRAM = 'pgsqlms';
4141

4242
# OCF environment

0 commit comments

Comments
 (0)