From 934078fb46ed78d25fe6c2d88e467ab7af099ae4 Mon Sep 17 00:00:00 2001 From: "David E. Wheeler" Date: Sat, 7 Oct 2023 15:01:15 -0400 Subject: [PATCH] Increment to v0.31.1 --- Changes | 2 ++ README.md | 2 +- bin/check_mirrors | 2 +- lib/PGXN/Manager.pm | 2 +- lib/PGXN/Manager/Consumer.pm | 2 +- lib/PGXN/Manager/Consumer/mastodon.pm | 2 +- lib/PGXN/Manager/Consumer/twitter.pm | 2 +- lib/PGXN/Manager/Controller.pm | 2 +- lib/PGXN/Manager/Distribution.pm | 2 +- lib/PGXN/Manager/Locale.pm | 2 +- lib/PGXN/Manager/Locale/en.pm | 2 +- lib/PGXN/Manager/Locale/fr.pm | 2 +- lib/PGXN/Manager/Maint.pm | 2 +- lib/PGXN/Manager/Request.pm | 2 +- lib/PGXN/Manager/Router.pm | 2 +- lib/PGXN/Manager/Templates.pm | 2 +- 16 files changed, 17 insertions(+), 15 deletions(-) diff --git a/Changes b/Changes index b4dc316..d8f765d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for Perl extension PGXN::Manager +0.31.1 + 0.31.0 2023-10-07T19:02:24Z - Added the application names (pgxn_manager and pgxn_consumer) to the Postgres connections. diff --git a/README.md b/README.md index fad37ba..62f17c3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -PGXN/Manager version 0.31.0 +PGXN/Manager version 0.31.1 =========================== [![Test Status](https://github.com/pgxn/pgxn-manager/workflows/CI/badge.svg)](https://github.com/pgxn/pgxn-manager/actions) diff --git a/bin/check_mirrors b/bin/check_mirrors index 38bc821..ef98e99 100755 --- a/bin/check_mirrors +++ b/bin/check_mirrors @@ -11,7 +11,7 @@ use File::Basename; use File::Spec; use Getopt::Long; -BEGIN { our $VERSION = v0.31.0 } +BEGIN { our $VERSION = v0.31.1 } Getopt::Long::Configure( qw(bundling) ); diff --git a/lib/PGXN/Manager.pm b/lib/PGXN/Manager.pm index 32cac8a..2ca5d41 100644 --- a/lib/PGXN/Manager.pm +++ b/lib/PGXN/Manager.pm @@ -19,7 +19,7 @@ use Email::Sender::Simple; use Encode; use namespace::autoclean; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; =head1 Name diff --git a/lib/PGXN/Manager/Consumer.pm b/lib/PGXN/Manager/Consumer.pm index 925ebfa..c6a05df 100644 --- a/lib/PGXN/Manager/Consumer.pm +++ b/lib/PGXN/Manager/Consumer.pm @@ -18,7 +18,7 @@ use Fcntl qw(:flock); use Cwd; use namespace::autoclean; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; use constant CHANNELS => qw(release new_user new_mirror); has verbose => (is => 'ro', isa => 'Int', required => 1, default => 0); diff --git a/lib/PGXN/Manager/Consumer/mastodon.pm b/lib/PGXN/Manager/Consumer/mastodon.pm index d5f9fce..3555027 100644 --- a/lib/PGXN/Manager/Consumer/mastodon.pm +++ b/lib/PGXN/Manager/Consumer/mastodon.pm @@ -14,7 +14,7 @@ use warnings; use constant name => 'mastodon'; use namespace::autoclean; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; has server => (is => 'ro', required => 1, isa => 'Str'); has ua => (is => 'ro', required => 1, isa => 'LWP::UserAgent'); diff --git a/lib/PGXN/Manager/Consumer/twitter.pm b/lib/PGXN/Manager/Consumer/twitter.pm index d36f463..28a58aa 100644 --- a/lib/PGXN/Manager/Consumer/twitter.pm +++ b/lib/PGXN/Manager/Consumer/twitter.pm @@ -12,7 +12,7 @@ use warnings; use constant name => 'twitter'; use namespace::autoclean; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; subtype MaybeTwitterAPI => as maybe_type class_type 'Net::Twitter::Lite'; diff --git a/lib/PGXN/Manager/Controller.pm b/lib/PGXN/Manager/Controller.pm index a5f86b5..fd2b100 100644 --- a/lib/PGXN/Manager/Controller.pm +++ b/lib/PGXN/Manager/Controller.pm @@ -18,7 +18,7 @@ use Try::Tiny; use SemVer; use namespace::autoclean; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; Template::Declare->init( dispatch_to => ['PGXN::Manager::Templates'] ); diff --git a/lib/PGXN/Manager/Distribution.pm b/lib/PGXN/Manager/Distribution.pm index ba0789d..36273d5 100644 --- a/lib/PGXN/Manager/Distribution.pm +++ b/lib/PGXN/Manager/Distribution.pm @@ -19,7 +19,7 @@ use Digest::SHA1; use PGXN::Meta::Validator v0.12.0; use namespace::autoclean; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; my $TMPDIR = PGXN::Manager->new->config->{tmpdir} || File::Spec->catdir(File::Spec->tmpdir, 'pgxn'); diff --git a/lib/PGXN/Manager/Locale.pm b/lib/PGXN/Manager/Locale.pm index d743ade..61ad515 100644 --- a/lib/PGXN/Manager/Locale.pm +++ b/lib/PGXN/Manager/Locale.pm @@ -5,7 +5,7 @@ use utf8; use parent 'Locale::Maketext'; use I18N::LangTags::Detect; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; # Allow unknown phrases to just pass-through. our %Lexicon = ( diff --git a/lib/PGXN/Manager/Locale/en.pm b/lib/PGXN/Manager/Locale/en.pm index c28883d..2c502f1 100644 --- a/lib/PGXN/Manager/Locale/en.pm +++ b/lib/PGXN/Manager/Locale/en.pm @@ -4,7 +4,7 @@ use 5.10.0; use utf8; use parent 'PGXN::Manager::Locale'; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; our %Lexicon = ( ); diff --git a/lib/PGXN/Manager/Locale/fr.pm b/lib/PGXN/Manager/Locale/fr.pm index f9dd456..edb0b40 100644 --- a/lib/PGXN/Manager/Locale/fr.pm +++ b/lib/PGXN/Manager/Locale/fr.pm @@ -4,7 +4,7 @@ use 5.10.0; use utf8; use parent 'PGXN::Manager::Locale'; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; our %Lexicon = ( listcomma => ',', diff --git a/lib/PGXN/Manager/Maint.pm b/lib/PGXN/Manager/Maint.pm index daf4b14..378a756 100644 --- a/lib/PGXN/Manager/Maint.pm +++ b/lib/PGXN/Manager/Maint.pm @@ -11,7 +11,7 @@ use Encode qw(encode_utf8); use Carp; use namespace::autoclean; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; has verbosity => (is => 'rw', required => 1, isa => 'Int', default => 0); has exitval => (is => 'rw', required => 0, isa => 'Int', default => 0); diff --git a/lib/PGXN/Manager/Request.pm b/lib/PGXN/Manager/Request.pm index c9da31b..39a4bea 100644 --- a/lib/PGXN/Manager/Request.pm +++ b/lib/PGXN/Manager/Request.pm @@ -10,7 +10,7 @@ use HTTP::Body '1.08'; # required for proper upload mime type detection. use namespace::autoclean; use Encode; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; my $CHECK = Encode::FB_CROAK | Encode::LEAVE_SRC; my $SCRIPT_NAME = PGXN::Manager->config->{uri_script_name_key} || 'SCRIPT_NAME'; diff --git a/lib/PGXN/Manager/Router.pm b/lib/PGXN/Manager/Router.pm index 9367ffe..33f74f9 100644 --- a/lib/PGXN/Manager/Router.pm +++ b/lib/PGXN/Manager/Router.pm @@ -9,7 +9,7 @@ use Plack::Session::Store::File; use PGXN::Manager::Controller; use PGXN::Manager; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; sub app { builder { diff --git a/lib/PGXN/Manager/Templates.pm b/lib/PGXN/Manager/Templates.pm index ff67aaf..3282d9b 100644 --- a/lib/PGXN/Manager/Templates.pm +++ b/lib/PGXN/Manager/Templates.pm @@ -7,7 +7,7 @@ use Template::Declare::Tags; use PGXN::Manager; use PGXN::Manager::Locale; -our $VERSION = v0.31.0; +our $VERSION = v0.31.1; my $l = PGXN::Manager::Locale->get_handle('en'); sub T {