Skip to content

Commit

Permalink
Increment to v0.23.8 and remove wayward figure
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Feb 22, 2024
1 parent 3e324c4 commit 8ca2189
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 12 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.8

0.23.7 2024-02-22T20:50:06Z
- Removed duplicate CC license image and link on the /art page.
- Moved the generation of HTML from Multimarkdown files from build
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.7;
our $VERSION = v0.23.8;

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

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

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

our %Lexicon = (
);
Expand Down
5 changes: 0 additions & 5 deletions lib/PGXN/Site/Locale/en/art.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<h1 id="pgxngraphicidentity">PGXN Graphic Identity</h1>

<figure>
<img src="https://licensebuttons.net/l/by/4.0/88x31.png" alt="Creative Commons License" />
<figcaption>Creative Commons License</figcaption>
</figure>

<a rel="license" href="https://creativecommons.org/licenses/by/4.0/">
<img alt="Creative Commons License" src="https://licensebuttons.net/l/by/4.0/88x31.png" />
</a>
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.7;
our $VERSION = v0.23.8;

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

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

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

0 comments on commit 8ca2189

Please sign in to comment.