Skip to content

Commit

Permalink
Update ChangeLog and version to 5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Feb 4, 2023
1 parent 08a6d0a commit bacb8bb
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
20 changes: 20 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Febuary 04 2023 - v5.5

This maintenance release fixes some issues reported by users since the last
month and some improvements.

Improvements:

* Prevent newline in function supporting the FROM keyword like substring().
* Add multi-line formatting on TRUNCATE with a table list. Thanks to GabenGar
for the feature request.

Here is the complete list of changes and acknowledgments:

- Fix not respected --no-space-function behavior with SELECT of function.
Thanks to fenuks for the report.
- Update regression test result for fix on double quoted alias name. Thanks
to Christoph Berg for the report.
- Fix potential exception on uninitialized variable. Thanks to Nate Smith
for the report.

January 11 2023 - v5.4

This maintenance release fixes issues reported by users since the last five
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.4
Version 5.5
=cut

# Version of pgFormatter
our $VERSION = '5.4';
our $VERSION = '5.5';

# 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.4
Version 5.5
=cut

# Version of pgFormatter
our $VERSION = '5.4';
our $VERSION = '5.5';

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.4
Version 5.5
=cut

# Version of pgFormatter
our $VERSION = '5.4';
our $VERSION = '5.5';

use autodie;
use pgFormatter::Beautify;
Expand Down

0 comments on commit bacb8bb

Please sign in to comment.