Skip to content

Commit

Permalink
Increment to v0.23.6
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Feb 15, 2024
1 parent 812c813 commit 036c74d
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.6

0.23.5 2024-02-15T19:56:46Z
- Restored the README to releases where the README is also listed as
extension documentation (#17).
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.5;
our $VERSION = v0.23.6;

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.5;
our $VERSION = v0.23.6;

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.5;
our $VERSION = v0.23.6;

# 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.5;
our $VERSION = v0.23.6;

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.5;
our $VERSION = v0.23.6;

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.5;
our $VERSION = v0.23.6;

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.5;
our $VERSION = v0.23.6;

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

0 comments on commit 036c74d

Please sign in to comment.