diff --git a/ChangeLog b/ChangeLog index f136db0..ad4f763 100644 --- a/ChangeLog +++ b/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 diff --git a/META.yml b/META.yml index cc5e1ef..bb36224 100644 --- a/META.yml +++ b/META.yml @@ -1,5 +1,5 @@ name: pg_dumpbinary -version: 2.14 +version: 2.15 version_from: pg_dumpbinary installdirs: site recommends: diff --git a/pg_dumpbinary b/pg_dumpbinary index bcfb83a..4395724 100755 --- a/pg_dumpbinary +++ b/pg_dumpbinary @@ -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 = ''; diff --git a/pg_restorebinary b/pg_restorebinary index 43009b1..d98a973 100755 --- a/pg_restorebinary +++ b/pg_restorebinary @@ -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 = '';