File tree Expand file tree Collapse file tree 8 files changed +39
-8
lines changed
Expand file tree Collapse file tree 8 files changed +39
-8
lines changed Original file line number Diff line number Diff 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.0.0 ' ,
25+ dist_version => ' 1.0.1 ' ,
2626 dist_abstract => ' PostgreSQL multistate OCF resource agent for Pacemaker' ,
2727 dist_author => [
2828 ' Mael Rimbault <[email protected] >' ,
Original file line number Diff line number Diff line change 1+ resource-agents-paf (1.0.1-1) unstable; urgency=low
2+
3+ * 1.0.1 minor release
4+ * fix: forbid the master to decrease its own score (gh #19)
5+ * fix: bad LSN decimal converstion (gh #20)
6+ * fix: support PostgreSQL 9.5 controldata output (gh #12)
7+ * fix: set group id of given system_user before executing commands (gh #11)
8+ * fix: use long argument of external commands when possible
9+ * fix: bad header leading to wrong manpage section
10+ * fix: OCF tests when PostgreSQL does not listen in /tmp
11+ * change: do not update score outside of a monitor action (gh #18)
12+ * new: add parameter 'start_opts', usefull for debian and derivated (gh #11)
13+ * new: add specific timeout for master and slave roles in meta-data (gh #14)
14+ * new: add debian packaging related files
15+
16+ -- Jehan-Guillaume (ioguix) de Rorthais <
[email protected] > Wed, 27 Apr 2016 13:22:50 +0200
17+
118resource-agents-paf (1.0.0-1) unstable; urgency=low
219
320 * Initial release
Original file line number Diff line number Diff line change 1- resource-agents-paf_1.0.0 -1_all.deb admin optional
1+ resource-agents-paf_1.0.1 -1_all.deb admin optional
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ BEGIN {
9999 use Exporter;
100100
101101
102- our \$ VERSION = 'v1.0.0 ';
102+ our \$ VERSION = 'v1.0.1 ';
103103 our \@ ISA = ('Exporter');
104104 our \@ EXPORT = qw(
105105 \$ INITDIR
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ use OCF_Directories;
8585BEGIN {
8686 use Exporter;
8787
88- our $VERSION = ' v1.0.0 ' ;
88+ our $VERSION = ' v1.0.1 ' ;
8989 our @ISA = (' Exporter' );
9090 our @EXPORT = qw(
9191 $__OCF_ACTION
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ use 5.008;
6060BEGIN {
6161 use Exporter;
6262
63- our $VERSION = ' v1.0.0 ' ;
63+ our $VERSION = ' v1.0.1 ' ;
6464 our @ISA = (' Exporter' );
6565 our @EXPORT = qw(
6666 $OCF_SUCCESS
Original file line number Diff line number Diff line change 1- %global _tag v1.0.0
1+ %global _tag v1.0.1
22%global _ocfroot /usr/lib/ocf
33Name: resource-agents-paf
4- Version: 1.0.0
4+ Version: 1.0.1
55Release: 1
66Summary: PostgreSQL resource agent for Pacemaker
77License: PostgreSQL
@@ -41,6 +41,20 @@ rm -f "%{buildroot}"/usr/local/lib64/perl5/auto/PAF/.packlist
4141%{_datadir }/resource-agents/ocft/configs/pgsqlms
4242
4343%changelog
44+ *
Wed Apr 27 2016 Jehan-Guillaume de Rorthais <[email protected] > -
1.0.1-1 45+ - 1.0.1 minor release
46+ - fix: forbid the master to decrease its own score (gh #19)
47+ - fix: bad LSN decimal converstion (gh #20)
48+ - fix: support PostgreSQL 9.5 controldata output (gh #12)
49+ - fix: set group id of given system_user before executing commands (gh #11)
50+ - fix: use long argument of external commands when possible
51+ - fix: bad header leading to wrong manpage section
52+ - fix: OCF tests when PostgreSQL does not listen in /tmp
53+ - change: do not update score outside of a monitor action (gh #18)
54+ - new: add parameter 'start_opts', usefull for debian and derivated (gh #11)
55+ - new: add specific timeout for master and slave roles in meta-data (gh #14)
56+ - new: add debian packaging related files
57+
4458*
Wed Mar 02 2016 Jehan-Guillaume de Rorthais <[email protected] > 1.0.0-1 4559- Official 1.0.0 release
4660
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ use OCF_ReturnCodes;
2727use OCF_Directories;
2828use OCF_Functions;
2929
30- our $VERSION = ' v1.0.0 ' ;
30+ our $VERSION = ' v1.0.1 ' ;
3131our $PROGRAM = ' pgsqlms' ;
3232
3333# OCF environment
You can’t perform that action at this time.
0 commit comments