Skip to content

Commit

Permalink
Increment to vv0.23.4
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Feb 6, 2024
1 parent e13a1f9 commit dd0a2d2
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Perl extension PGXN::Site

0.23.4

0.23.3 2024-02-06T20:20:13Z
- Fixed 404 "Not Found" errors for documentation with uppercase characters
in the file name, such as `/dist/vectorize/vector-serve/README.html`,
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Site.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use 5.10.0;
use utf8;
use strict;
use warnings;
our $VERSION = v0.23.3;
our $VERSION = v0.23.4;

sub version_string {
sprintf 'v%vd', $VERSION;
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Site/Controller.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Encode;
use WWW::PGXN;
use List::MoreUtils qw(any);
use namespace::autoclean;
our $VERSION = v0.23.3;
our $VERSION = v0.23.4;

Template::Declare->init( dispatch_to => ['PGXN::Site::Templates'] );

Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Site/Locale.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use parent 'Locale::Maketext';
use I18N::LangTags::Detect;
use File::Spec;
use Carp;
our $VERSION = v0.23.3;
our $VERSION = v0.23.4;

# Allow unknown phrases to just pass-through.
our %Lexicon = (
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Site/Locale/en.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use utf8;
use strict;
use warnings;
use parent 'PGXN::Site::Locale';
our $VERSION = v0.23.3;
our $VERSION = v0.23.4;

our %Lexicon = (
);
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Site/Locale/fr.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use utf8;
use strict;
use warnings;
use parent 'PGXN::Site::Locale';
our $VERSION = v0.23.3;
our $VERSION = v0.23.4;

our %Lexicon = (
listcomma => ',',
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Site/Router.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use PGXN::Site::Controller;
use Router::Resource;
use Plack::Builder;
use Plack::App::File;
our $VERSION = v0.23.3;
our $VERSION = v0.23.4;

sub app {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/PGXN/Site/Templates.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use File::Basename qw(basename);
use SemVer;
use Gravatar::URL;
#use namespace::autoclean; # Do not use; breaks sort {}
our $VERSION = v0.23.3;
our $VERSION = v0.23.4;

my $l = PGXN::Site::Locale->get_handle('en');
sub T { $l->maketext(@_) }
Expand Down

0 comments on commit dd0a2d2

Please sign in to comment.