Skip to content

Commit

Permalink
Update ChangeLog and version to 2.15
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Feb 14, 2024
1 parent aa7a20d commit bc910a3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions ChangeLog
@@ -1,3 +1,15 @@
2024-02-14 - version 2.15

This release adds a new option and fixes a bug reported by users since
last release.

- Add -w, --where command line option to pg_dumpbinary to apply a filter
to the data dumped. The filter will be used in a WHERE clause for data
export, this clause will be applied to all tables dumped. Thanks to Mike
Tefft for the feature request.
- Fix error "DBD::Pg::db do failed: server closed the connection unexpectedly"
when the attempt to dump the pre-data section fail.

2024-01-09 - version 2.14

This release adds two new options and fixes some bugs reported by users
Expand Down
2 changes: 1 addition & 1 deletion META.yml
@@ -1,5 +1,5 @@
name: pg_dumpbinary
version: 2.14
version: 2.15
version_from: pg_dumpbinary
installdirs: site
recommends:
Expand Down
2 changes: 1 addition & 1 deletion pg_dumpbinary
Expand Up @@ -20,7 +20,7 @@ use DBI;
use DBD::Pg;
use POSIX qw(strftime);

my $VERSION = '2.14';
my $VERSION = '2.15';
my $PROGRAM = 'pg_dumpbinary';

my $DBNAME = '';
Expand Down
2 changes: 1 addition & 1 deletion pg_restorebinary
Expand Up @@ -18,7 +18,7 @@ use Time::HiRes qw/usleep/;
use File::Spec qw/ tmpdir /;
use File::Temp qw/ tempfile /;

my $VERSION = '2.14';
my $VERSION = '2.15';
my $PROGRAM = 'pg_restorebinary';

my $DBNAME = '';
Expand Down

0 comments on commit bc910a3

Please sign in to comment.