Skip to content

Commit 2670814

Browse files
committed
v2.3.0 release
1 parent a7461ba commit 2670814

File tree

8 files changed

+20
-24
lines changed

8 files changed

+20
-24
lines changed

Build.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ my $build = Module::Build->new(
2222
create_packlist => 1,
2323
#create_readme => 1,
2424
create_makefile_pl => 'traditional',
25-
dist_version => '2.3_rc2',
26-
release_status => 'testing', # stable or testing
25+
dist_version => '2.3.0',
26+
release_status => 'stable', # stable or testing
2727
dist_abstract => 'PostgreSQL multistate OCF resource agent for Pacemaker',
2828
dist_author => [
2929
'Mael Rimbault <mael.rimbault@dalibo.com>',

CHANGELOG.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,11 @@
1-
# PAF v2.3 rc2
1+
# PAF v2.3.0
22

3-
Release date: 2020-02-11
3+
Release date: 2020-03-09
44

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

8-
Changelog since 2.3 rc1:
9-
10-
* fix: application_name's check, gh #156 reported by ZeroOne
11-
* fix: wrong exit reason, gh #156 reported by dud225
12-
13-
14-
# PAF v2.3 rc1
15-
16-
Release date: 2019-11-28
17-
18-
__WARNING__: This version is only compatible with at least
19-
Pacemaker 1.1.13 using a corosync 2.x stack.
20-
21-
Changelog since 2.2:
8+
Changelog since 2.2.1:
229

2310
* new: support PostgreSQL 12
2411
* fix: wrong log message during switchover failure

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
resource-agents-paf (2.3.0-1) unstable; urgency=low
2+
3+
* 2.3.0 major release
4+
5+
-- Jehan-Guillaume (ioguix) de Rorthais <jgdr@dalibo.com> Mon, 09 Mar 2020 23:30:00 +0100
6+
17
resource-agents-paf (2.3~rc2-1) unstable; urgency=low
28

39
* 2.3_rc2 release candidate

lib/OCF_Directories.pm.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use warnings;
66
use Config;
77
use Module::Build;
88

9-
my $VERSION = 'v2.3_rc2';
9+
my $VERSION = 'v2.3.0';
1010

1111
my $build = Module::Build->current;
1212
my %ocf_dirs = %{ $build->notes('ocf_dirs') };

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.3_rc2';
99+
our $VERSION = 'v2.3.0';
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.3_rc2';
63+
our $VERSION = 'v2.3.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 2.3_rc2
1+
%global _tag 2.3.0
22
%global _ocfroot %{_exec_prefix}/lib/ocf
33
Name: resource-agents-paf
4-
Version: 2.3~rc2
4+
Version: 2.3.0
55
Release: 1
66
Summary: PostgreSQL resource agent for Pacemaker
77
License: PostgreSQL
@@ -44,6 +44,9 @@ find "%{buildroot}" -type f -name .packlist -delete
4444
%{_datadir}/resource-agents/ocft/configs/pgsqlms
4545

4646
%changelog
47+
* Mon Mar 09 2020 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 2.3.0-1
48+
- 2.3.0 major release
49+
4750
* Tue Feb 11 2020 Jehan-Guillaume de Rorthais <jgdr@dalibo.com> - 2.3~rc2-1
4851
- 2.3_rc2 release candidate
4952

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

4242
# OCF environment

0 commit comments

Comments
 (0)