From a13075f3f92507e1ece17d704ac45c86e9ac9c2e Mon Sep 17 00:00:00 2001 From: "David E. Wheeler" Date: Sat, 7 Oct 2023 14:57:07 -0400 Subject: [PATCH] Increment to and timestamp v0.31.0 --- 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, 16 insertions(+), 16 deletions(-) diff --git a/Changes b/Changes index b34dae4..b4dc316 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Perl extension PGXN::Manager -0.30.2 +0.31.0 2023-10-07T19:02:24Z - Added the application names (pgxn_manager and pgxn_consumer) to the Postgres connections. - Updated pgxn_consumer to delete the PID file on exit. diff --git a/README.md b/README.md index acfefc1..fad37ba 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -PGXN/Manager version 0.30.2 +PGXN/Manager version 0.31.0 =========================== [![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 3479c06..38bc821 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.30.2 } +BEGIN { our $VERSION = v0.31.0 } Getopt::Long::Configure( qw(bundling) ); diff --git a/lib/PGXN/Manager.pm b/lib/PGXN/Manager.pm index dc2f196..32cac8a 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.30.2; +our $VERSION = v0.31.0; =head1 Name diff --git a/lib/PGXN/Manager/Consumer.pm b/lib/PGXN/Manager/Consumer.pm index 8636e26..925ebfa 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.30.2; +our $VERSION = v0.31.0; 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 ff676bd..d5f9fce 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.30.2; +our $VERSION = v0.31.0; 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 1abfef0..d36f463 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.30.2; +our $VERSION = v0.31.0; 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 867982e..a5f86b5 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.30.2; +our $VERSION = v0.31.0; Template::Declare->init( dispatch_to => ['PGXN::Manager::Templates'] ); diff --git a/lib/PGXN/Manager/Distribution.pm b/lib/PGXN/Manager/Distribution.pm index 930acae..ba0789d 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.30.2; +our $VERSION = v0.31.0; 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 a12d2db..d743ade 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.30.2; +our $VERSION = v0.31.0; # 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 11ec2c1..c28883d 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.30.2; +our $VERSION = v0.31.0; our %Lexicon = ( ); diff --git a/lib/PGXN/Manager/Locale/fr.pm b/lib/PGXN/Manager/Locale/fr.pm index 2040c03..f9dd456 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.30.2; +our $VERSION = v0.31.0; our %Lexicon = ( listcomma => ',', diff --git a/lib/PGXN/Manager/Maint.pm b/lib/PGXN/Manager/Maint.pm index da9eb6b..daf4b14 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.30.2; +our $VERSION = v0.31.0; 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 4c69836..c9da31b 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.30.2; +our $VERSION = v0.31.0; 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 d6d1c02..9367ffe 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.30.2; +our $VERSION = v0.31.0; sub app { builder { diff --git a/lib/PGXN/Manager/Templates.pm b/lib/PGXN/Manager/Templates.pm index 8cf7e33..ff67aaf 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.30.2; +our $VERSION = v0.31.0; my $l = PGXN::Manager::Locale->get_handle('en'); sub T {