Skip to content

Commit

Permalink
Update ChangeLog and version to 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Aug 7, 2022
1 parent 2b21dab commit 7fe5199
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 7 deletions.
24 changes: 24 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@

August 07 2022 - v5.3

This maintenance release fixes issues reported by users since the last six
months. Here is the complete list of changes and acknowledgments:

- Remove some useless parenthesis in DML statement. Thanks to Marc Cousin
for the request.
- Fix -o | --output that was always forced to stdout.
Thanks to Linekio and Joraao Bernardo for the report.
- Fix unsupported json operator ?|. Thanks to Jack Thibaut for the report.
- Fix formatting of create table with option and tablespace. Thanks to
jonyscathe for the report.
- Fix wrong wrapping in create table when --nocomment was used. Thanks to
Alexander Haase for the report.
- Fix nested CREATE SCHEMA formatting. Thanks to GabenGar for the report.
- Fix invalid multi-line string constant formatting. Thanks to zaneduffield
for the report.
- Force multiple INSERT values to be on separate lines. Previous behavior
was to keep all values on the same line. Thanks to Damien-B for the report.
- Add missing ELSIF keyword. Thanks to ideev for the report.
- Fix bad indentation when INDEX is present in target list. Thanks to Marc
Cousin for the report.

December 03 2021 - v5.2

This maintenance release fixes issues reported by users since the last six
Expand Down
4 changes: 2 additions & 2 deletions lib/pgFormatter/Beautify.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ pgFormatter::Beautify - Library for pretty-printing SQL queries
=head1 VERSION
Version 5.2
Version 5.3
=cut

# Version of pgFormatter
our $VERSION = '5.2';
our $VERSION = '5.3';

# Inclusion of code from Perl package SQL::Beautify
# Copyright (C) 2009 by Jonas Kramer
Expand Down
4 changes: 2 additions & 2 deletions lib/pgFormatter/CGI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ pgFormatter::CGI - Implementation of CGI-BIN script to format SQL queries.
=head1 VERSION
Version 5.2
Version 5.3
=cut

# Version of pgFormatter
our $VERSION = '5.2';
our $VERSION = '5.3';

use pgFormatter::Beautify;
use File::Basename;
Expand Down
4 changes: 2 additions & 2 deletions lib/pgFormatter/CLI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ pgFormatter::CLI - Implementation of command line program to format SQL queries.
=head1 VERSION
Version 5.2
Version 5.3
=cut

# Version of pgFormatter
our $VERSION = '5.2';
our $VERSION = '5.3';

use autodie;
use pgFormatter::Beautify;
Expand Down
2 changes: 1 addition & 1 deletion pg_format
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ local $SIG{ __WARN__ } = sub {
use FindBin;
use lib "$FindBin::RealBin/lib";

our $VERSION = '5.2';
our $VERSION = '5.3';

# Find out whether current run should be treated as CGI or CLI
my $program;
Expand Down

0 comments on commit 7fe5199

Please sign in to comment.