diff --git a/Changes b/Changes index fac10a2..41b6f4e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for Perl extension PGXN::API +0.20.3 + 0.20.2 2024-03-14T23:04:19Z - Fixed symlinks extracted from Zip files and permission errors when re-indexing distributions. diff --git a/lib/PGXN/API.pm b/lib/PGXN/API.pm index ee98897..1b33f90 100644 --- a/lib/PGXN/API.pm +++ b/lib/PGXN/API.pm @@ -7,7 +7,7 @@ use File::Spec::Functions qw(catfile catdir); use URI::Template; use JSON; use namespace::autoclean; -our $VERSION = v0.20.2; +our $VERSION = v0.20.3; =head1 Name diff --git a/lib/PGXN/API/Indexer.pm b/lib/PGXN/API/Indexer.pm index 9951714..d46f570 100644 --- a/lib/PGXN/API/Indexer.pm +++ b/lib/PGXN/API/Indexer.pm @@ -21,7 +21,7 @@ use Lucy::Index::Indexer; use Try::Tiny; use Archive::Zip qw(AZ_OK); use namespace::autoclean; -our $VERSION = v0.20.2; +our $VERSION = v0.20.3; has verbose => (is => 'rw', isa => 'Int', default => 0); has _index_it => (is => 'rw', isa => 'Bool', default => 1); diff --git a/lib/PGXN/API/Router.pm b/lib/PGXN/API/Router.pm index 3b3c35c..1bbd618 100644 --- a/lib/PGXN/API/Router.pm +++ b/lib/PGXN/API/Router.pm @@ -13,7 +13,7 @@ use Plack::Request; use Encode; use File::Spec::Functions qw(catdir); use namespace::autoclean; -our $VERSION = v0.20.2; +our $VERSION = v0.20.3; sub app { my ($class, %params) = @_; diff --git a/lib/PGXN/API/Sync.pm b/lib/PGXN/API/Sync.pm index 18b438b..c9660f4 100644 --- a/lib/PGXN/API/Sync.pm +++ b/lib/PGXN/API/Sync.pm @@ -14,7 +14,7 @@ use Archive::Zip qw(:ERROR_CODES); use constant WIN32 => $^O eq 'MSWin32'; use Moose::Util::TypeConstraints; use namespace::autoclean; -our $VERSION = v0.20.2; +our $VERSION = v0.20.3; subtype Executable => as 'Str', where { my $exe = $_;