diff --git a/Changes b/Changes index bdc655c..7d7f716 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for Perl extension BackupPC-XS. +0.62: June 20, 2020 + + - force rewrite of attr file if xattr key fixup was applied + + - fixed attrib refCnt when attrib is unchanged + + - bpc_attrib_dirWrite() doesn't create empty attrib files + 0.61: June 8, 2020 - fix view of migrated v3 backup diff --git a/README b/README index c6608e1..3169db6 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -BackupPC-XS version 0.61 +BackupPC-XS version 0.62 ======================== BackupPC::XS implements various BackupPC functions in a perl-callable diff --git a/configure.sh b/configure.sh index 0e7dc2e..a1ae153 100755 --- a/configure.sh +++ b/configure.sh @@ -2419,7 +2419,7 @@ ac_config_headers="$ac_config_headers config.h" -RSYNC_VERSION=0.61 +RSYNC_VERSION=0.62 { $as_echo "$as_me:${as_lineno-$LINENO}: Configuring backuppc-xs $RSYNC_VERSION" >&5 $as_echo "$as_me: Configuring backuppc-xs $RSYNC_VERSION" >&6;} diff --git a/lib/BackupPC/XS.pm b/lib/BackupPC/XS.pm index 7a7031b..ca204c7 100644 --- a/lib/BackupPC/XS.pm +++ b/lib/BackupPC/XS.pm @@ -55,7 +55,7 @@ my @FILE_TYPES = qw( 'all' => [ @EXPORT_OK ], ); -our $VERSION = '0.61'; +our $VERSION = '0.62'; require XSLoader; XSLoader::load('BackupPC::XS', $VERSION);