From 37b087dfa65833146b8eb4924fbf2e9b01bb64ed Mon Sep 17 00:00:00 2001 From: "David E. Wheeler" Date: Mon, 5 Jul 2021 18:28:27 -0400 Subject: [PATCH] Increment to v0.21.0 and timestamp for release --- Changes | 2 +- README.md | 2 +- bin/check_mirrors | 2 +- lib/PGXN/Manager.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 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Changes b/Changes index f5dcc78..30da6e4 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Perl extension PGXN::Manager -0.20.3 +0.21.0 2021-07-05T22:30:54Z - Updated the password hashing to a much slower and therefor more secure algorithm (blowfish with 9 iterations). - Refactored the password algorithm selection into a function so diff --git a/README.md b/README.md index 7fd3b44..e0e5fdf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -PGXN/Manager version 0.20.3 +PGXN/Manager version 0.21.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 ddfc26f..0bf45ec 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.20.3 } +BEGIN { our $VERSION = v0.21.0 } Getopt::Long::Configure( qw(bundling) ); diff --git a/lib/PGXN/Manager.pm b/lib/PGXN/Manager.pm index f83d5f0..7d25a2d 100644 --- a/lib/PGXN/Manager.pm +++ b/lib/PGXN/Manager.pm @@ -18,7 +18,7 @@ use Net::Twitter::Lite::WithAPIv1_1; use Email::Sender::Simple; use namespace::autoclean; -our $VERSION = v0.20.3; +our $VERSION = v0.21.0; =head1 Name diff --git a/lib/PGXN/Manager/Controller.pm b/lib/PGXN/Manager/Controller.pm index a2ea679..acde345 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.20.3; +our $VERSION = v0.21.0; Template::Declare->init( dispatch_to => ['PGXN::Manager::Templates'] ); diff --git a/lib/PGXN/Manager/Distribution.pm b/lib/PGXN/Manager/Distribution.pm index d0864d4..cc99176 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.20.3; +our $VERSION = v0.21.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 5f08a33..e243291 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.20.3; +our $VERSION = v0.21.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 43e6b07..6835161 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.20.3; +our $VERSION = v0.21.0; our %Lexicon = ( ); diff --git a/lib/PGXN/Manager/Locale/fr.pm b/lib/PGXN/Manager/Locale/fr.pm index 5cf2e8c..1e977de 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.20.3; +our $VERSION = v0.21.0; our %Lexicon = ( listcomma => ',', diff --git a/lib/PGXN/Manager/Maint.pm b/lib/PGXN/Manager/Maint.pm index ffcdbcc..cf8841d 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.20.3; +our $VERSION = v0.21.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 3177499..66bfb94 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.20.3; +our $VERSION = v0.21.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 6f08987..139a4d8 100644 --- a/lib/PGXN/Manager/Router.pm +++ b/lib/PGXN/Manager/Router.pm @@ -10,7 +10,7 @@ use PGXN::Manager::Controller; use PGXN::Manager; use Encode; -our $VERSION = v0.20.3; +our $VERSION = v0.21.0; sub app { builder { diff --git a/lib/PGXN/Manager/Templates.pm b/lib/PGXN/Manager/Templates.pm index 5ef4975..b866416 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.20.3; +our $VERSION = v0.21.0; my $l = PGXN::Manager::Locale->get_handle('en'); sub T {