Skip to content

Commit

Permalink
Increment to v0.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Feb 15, 2024
1 parent 49dea7e commit 3658cbd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Perl extension PGXN::API

0.20.2

0.20.1 2024-02-15T22:18:14Z
- Fixed a bug where a testing extension's version and abstract was not
properly indexed when there was no stable extension (and also unstable
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/API.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use File::Spec::Functions qw(catfile catdir);
use URI::Template;
use JSON;
use namespace::autoclean;
our $VERSION = v0.20.1;
our $VERSION = v0.20.2;

=head1 Name
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/API/Indexer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Lucy::Index::Indexer;
use Try::Tiny;
use Archive::Zip qw(AZ_OK);
use namespace::autoclean;
our $VERSION = v0.20.1;
our $VERSION = v0.20.2;

has verbose => (is => 'rw', isa => 'Int', default => 0);
has _index_it => (is => 'rw', isa => 'Bool', default => 1);
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/API/Router.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Plack::Request;
use Encode;
use File::Spec::Functions qw(catdir);
use namespace::autoclean;
our $VERSION = v0.20.1;
our $VERSION = v0.20.2;

sub app {
my ($class, %params) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/API/Sync.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.1;
our $VERSION = v0.20.2;

subtype Executable => as 'Str', where {
my $exe = $_;
Expand Down

0 comments on commit 3658cbd

Please sign in to comment.