Skip to content

Commit

Permalink
Update Changelog and version to 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Oct 29, 2019
1 parent b1b403e commit 0044120
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
2019-10-29 - Version 3.1 released

This release is a maintenance release that adds support to PostgreSQL
v12.0. It also add a new report:

* Add report of extended statistics in report Table Statistics per
database. Example:

Table | Extended Statistic
public.cities | CREATE STATISTICS sch1.t1_stat (dependencies)
ON city,country FROM public.cities;

It also fixes some issues reported by users since last month:

- Fix some typos in documentation. Thanks to Justin Pryzby for the
report.
- Replace obsolete pg_constraint.consrc in PostgreSQL v12 by a call
to function pg_get_constraintdef(). Thanks to seadba and Devrim
Gunduz for the report.


2019-09-18 - Version 3.0 released

This release is a major release that adds lot of improvement and
Expand Down
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ resources:
git: [email protected]:darold/pgcluu.git
type: git
web: http://pgcluu.darold.net/
version: 3.0
version: 3.1
2 changes: 1 addition & 1 deletion cgi-bin/pgcluu.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use POSIX qw(locale_h sys_wait_h ceil strftime);
setlocale(LC_ALL, 'C');
use Storable qw(store_fd fd_retrieve);

$VERSION = '3.0';
$VERSION = '3.1';
$PROGRAM = 'pgCluu';


Expand Down
2 changes: 1 addition & 1 deletion pgcluu
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use POSIX qw(locale_h sys_wait_h ceil strftime);
setlocale(LC_ALL, 'C');
use Storable qw(store_fd fd_retrieve);

$VERSION = '3.0';
$VERSION = '3.1';
$PROGRAM = 'pgCluu';

# Global variables
Expand Down
2 changes: 1 addition & 1 deletion pgcluu_collectd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use constant UMASK => 0022;

$| = 1;

$VERSION = '3.0';
$VERSION = '3.1';
$PROGRAM = 'pgcluu_collectd';

# Default path to the external programs
Expand Down

0 comments on commit 0044120

Please sign in to comment.