Skip to content

Commit

Permalink
Increment to v0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Feb 9, 2024
1 parent 638ae86 commit d2cb6b7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Revision history for Perl extension PGXN::API

0.20.0
0.20.1

0.20.0 2024-02-09T17:36:10Z
- Removed the `Capfile` and `eg` directory. Examples for managing PGXN
can now be found in the pgxn/pgxn-ops GitHub repository.
- Switched from Text::Markdown to CommonMark for parsing and formatting
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.0;
our $VERSION = v0.20.1;

=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 @@ -20,7 +20,7 @@ use Lucy::Index::Indexer;
use Try::Tiny;
use Archive::Zip qw(AZ_OK);
use namespace::autoclean;
our $VERSION = v0.20.0;
our $VERSION = v0.20.1;

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.0;
our $VERSION = v0.20.1;

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.0;
our $VERSION = v0.20.1;

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

0 comments on commit d2cb6b7

Please sign in to comment.