From d2cb6b706b8cd0c89ecbfc7cbe42a92cb5c80732 Mon Sep 17 00:00:00 2001 From: "David E. Wheeler" Date: Fri, 9 Feb 2024 15:14:15 -0500 Subject: [PATCH] Increment to v0.20.1 --- Changes | 4 +++- lib/PGXN/API.pm | 2 +- lib/PGXN/API/Indexer.pm | 2 +- lib/PGXN/API/Router.pm | 2 +- lib/PGXN/API/Sync.pm | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index 28ff6fd..d568d02 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/lib/PGXN/API.pm b/lib/PGXN/API.pm index d1240d6..b85c4bf 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.0; +our $VERSION = v0.20.1; =head1 Name diff --git a/lib/PGXN/API/Indexer.pm b/lib/PGXN/API/Indexer.pm index 02b7d59..fdf00b1 100644 --- a/lib/PGXN/API/Indexer.pm +++ b/lib/PGXN/API/Indexer.pm @@ -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); diff --git a/lib/PGXN/API/Router.pm b/lib/PGXN/API/Router.pm index 4d49d7b..fa71461 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.0; +our $VERSION = v0.20.1; sub app { my ($class, %params) = @_; diff --git a/lib/PGXN/API/Sync.pm b/lib/PGXN/API/Sync.pm index 716b07f..d9efa11 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.0; +our $VERSION = v0.20.1; subtype Executable => as 'Str', where { my $exe = $_;